import { FormEvent, FunctionComponent, HTMLProps, ReactNode } from 'react'; import { Omit } from '../../typeUtils'; export interface CheckboxProps extends Omit, 'type' | 'onChange' | 'disabled' | 'label'> { isDisabled?: boolean; isValid?: boolean; isChecked?: boolean; onChange?(checked: boolean, event: FormEvent): void; id: string; 'aria-label': string; label?: ReactNode; } declare const Checkbox: FunctionComponent; export default Checkbox;