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