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