import { FieldValues, UseControllerProps } from 'react-hook-form'; import { CheckBoxProps } from '../checkbox'; export type RHFCheckBoxProps = UseControllerProps & Omit; declare function RHFCheckbox(inProps: RHFCheckBoxProps): import("react/jsx-runtime").JSX.Element; declare module '@mui/material' { interface Components { ReevolveRHFCheckbox?: { defaultProps?: Partial; }; } } export default RHFCheckbox; //# sourceMappingURL=RHFCheckbox.d.ts.map