import { ArrayPathValue, FormOption } from '../../../../types'; import { FieldPath, FieldValues } from 'react-hook-form'; import { SingleColumnCheckListProps } from './SingleColumnCheckList'; export type MultiColumnCheckListProps = FieldPath, TOptionValue = ArrayPathValue, TOption = FormOption> = { numColumns: number; } & SingleColumnCheckListProps; export declare const MultiColumnCheckList: = FieldPath, TOptionValue = ArrayPathValue, TOption = FormOption>({ id, options, getOptionKey, getOptionValue, getOptionLabel, getOptionHelpMessage, isOptionDisabled, onChange, isChecked, disabled, numColumns, }: MultiColumnCheckListProps) => import("@emotion/react/jsx-runtime").JSX.Element;