import React, { FC, ChangeEvent } from 'react'; export interface CheckboxProps extends Omit, 'onChange' | 'value'> { /** The callback fired when the state is changed. */ onChange: (event?: ChangeEvent | string) => void; /** The value of the checkbox. */ value: string; /** Whether or not the checkbox is checked. */ checked?: boolean; } export interface StyledCheckboxProps { checked?: boolean; } export declare const Checkbox: FC; export default Checkbox;