import { FC } from 'react'; import AntCheckbox, { CheckboxChangeEvent, CheckboxProps as AntCheckboxProps } from 'antd/es/checkbox'; interface CheckboxProps extends Omit { value?: boolean; onChange?: (value: boolean, event: CheckboxChangeEvent) => void; } declare const InternalCheckbox: FC; declare type InternalCheckboxType = typeof InternalCheckbox; interface CheckboxInterface extends InternalCheckboxType { Group: typeof AntCheckbox.Group; } declare const Checkbox: CheckboxInterface; export default Checkbox;