import React__default from 'react'; import { FieldValues, Path, RegisterOptions } from 'react-hook-form'; import { FormCheckboxProps } from './checkbox.js'; type HookFormCheckboxProps = Omit & { name: Path; rules?: RegisterOptions>; error?: string; }; declare function HookFormCheckbox({ id, name, label, rules, error, disabled, classNames, ...rest }: HookFormCheckboxProps): React__default.JSX.Element | null; export { HookFormCheckbox };