import React__default from 'react'; import { FieldValues, Path } from 'react-hook-form'; import { FormSelectProps } from './select.js'; import { HookFormRules } from './types.js'; declare function HookFormSelect({ id, name, label, error, rules, classNames, disabled, ...rest }: Omit & { rules?: HookFormRules; name: Path; error?: string; }): React__default.JSX.Element; export { HookFormSelect };