import React from 'react'; import { FieldProps } from 'formik'; export interface CheckboxProps { className?: string | null; classNameLabel?: string | null; disabled?: boolean; id?: string | null; label: string; labelStyle?: object; name: string; style?: object; } export declare type RenderCheckbox = (props: FieldProps) => React.ReactNode; declare const CheckboxField: React.FC; export default CheckboxField;