import { ArrayPathValue, FormOption, FormOptionsControlProps } from '../../../../types'; import { FieldPath, FieldValues } from 'react-hook-form'; export type FormChecklistProps = FieldPath, TOptionValue = ArrayPathValue, TOption = FormOption> = { onChange?: (option: TOption, checked: boolean) => void; numColumns?: number; } & FormOptionsControlProps, TOptionValue, TOption>; export declare const FormChecklist: = FieldPath, TOptionValue = ArrayPathValue, TOption = FormOption>({ id: suppliedId, name, rules, shouldUnregister, label, options, getOptionKey, getOptionValue, getOptionLabel, getOptionHelpMessage, isOptionDisabled, areOptionValuesEqual, onChange, disabled, helpMessage, errorMode, infoTooltipProps, numColumns, }: FormChecklistProps) => import("@emotion/react/jsx-runtime").JSX.Element;