import React, { FC } from 'react' import { Checkbox as AntdCheckbox, CheckboxProps as AntdCheckboxProps } from 'antd' export type CheckboxProps = Omit export const Checkbox: FC = (props) => { return }