import { ReactNode } from 'react'; interface CheckboxFormControlProps { label: string; name: string; isChecked: boolean; onChange: (checked: boolean, fieldName: string) => void; children?: ReactNode; focusChildRef?: React.RefObject | React.RefObject; } declare const CheckboxFormControl: ({ label, name, isChecked, onChange, children, focusChildRef, }: CheckboxFormControlProps) => import("react/jsx-runtime").JSX.Element; export default CheckboxFormControl;