import React from 'react';
import { IInputCurrency } from './types/inputCurrency';
declare const InputCurrencyBoundary: <V extends string | unknown>(props: IInputCurrency<V>, ref: React.ForwardedRef<HTMLInputElement | undefined>) => JSX.Element;
declare const InputCurrency: <V extends string | unknown>(props: React.PropsWithChildren<IInputCurrency<V>> & {
    ref?: React.ForwardedRef<HTMLInputElement> | undefined | null;
}) => ReturnType<typeof InputCurrencyBoundary>;
export { InputCurrency };
