import { ControllerProps, FieldPathValue, FieldValues, Path } from 'react-hook-form'; import { SelectProps } from '../ui/Select'; import type * as React from 'react'; export type ControlledSelectProps = SelectProps & Omit & { name: Path; onBlur?: () => void; onChange?: (value: unknown) => void; } & ({ options: { label: React.ReactNode; value: FieldPathValue>; }[]; children?: never; } | { options?: never; children: React.ReactNode; }); export declare const ControlledSelect: ({ name, rules, children, options, onChange, onBlur, ...props }: ControlledSelectProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ControlledSelect.d.ts.map