import { JSX } from 'react'; import { InputCurrencyProps } from './InputCurrency'; export interface HookedInputCurrencyProps extends Omit { /** * field name to match hook-form state */ name: string; } /** * `InputCurrency` component ready to be used with the `react-hook-form` context. * Value is stored in form state as cents. * @see InputCurrency */ export declare function HookedInputCurrency({ name, ...props }: HookedInputCurrencyProps): JSX.Element; export declare namespace HookedInputCurrency { var displayName: string; }