import { FormFieldProps } from '../../../../types'; import { FormControlLabelProps } from '@mui/material'; import { ReactNode } from 'react'; import { FieldPath, FieldValues } from 'react-hook-form'; export type FormCheckboxProps = FieldPath> = FormFieldProps & Omit & { label: ReactNode; helpMessage?: ReactNode; /** An inverse checkbox will send the value 'false' when checked */ inverse?: boolean; }; export declare const FormCheckbox: = FieldPath>({ id: suppliedId, name, inverse, rules, errorMode, shouldUnregister, label, helpMessage, ...formControlProps }: FormCheckboxProps) => import("@emotion/react/jsx-runtime").JSX.Element;