import React from 'react'; import { CheckboxProps } from '@mui/material'; import { ControllerProps } from 'react-hook-form'; export interface CheckboxGroupControlProps extends CheckboxProps { name: string; label?: string; options: { value: string; label: string; }[]; defaultValue?: string[]; disabled?: boolean; enableErrorMessage?: boolean; required?: boolean; rules?: ControllerProps['rules'] | undefined; size?: 'medium' | 'small'; } declare const CheckboxGroupControl: ({ name, label, options, defaultValue, disabled, enableErrorMessage, required, rules, size, ...otherProps }: CheckboxGroupControlProps) => React.JSX.Element; export default CheckboxGroupControl; //# sourceMappingURL=CheckboxGroupControl.d.ts.map