import { ElementProps } from '../Form/Element'; import { UIComponent } from '../ui-types'; export interface CheckboxProps extends Omit>, 'value'> { type?: 'checkbox' | 'radio'; value?: T; onChecked?: (status: boolean, value: T) => void; } declare const Checkbox: (props: CheckboxProps & React.RefAttributes) => React.ReactElement; export default Checkbox;