import { FC } from 'react'; import { LinkProps } from '../Link'; export interface CheckboxProps { label?: string; name?: string; required?: boolean; value?: boolean; onChange?: (e: any) => void; onBlur?: (e: any) => void; link?: LinkProps; } declare const Checkbox: FC; export default Checkbox;