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