import { FieldProps } from 'formik'; import { CheckboxProps } from './Checkbox'; export declare type CheckboxFieldProps = Partial & CheckboxProps; declare const CheckboxField: ({ field, ...rest }: CheckboxFieldProps) => JSX.Element; export default CheckboxField;