import { ComponentProps } from 'react'; import { ControllerProps, FieldValues, Path } from 'react-hook-form'; import { Input, InputProps } from '../ui/Input'; import { ControlledRules } from './valueTransforms'; export type ControlledInputProps = InputProps & Omit, 'render' | 'rules'> & { name: Path; rules?: ControlledRules; } & ComponentProps & Omit, 'render' | 'rules'>; export declare const ControlledInput: ({ name, rules, onChange, ...props }: ControlledInputProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ControlledInput.d.ts.map