import { Dispatch, SetStateAction } from 'react';
import { InputProps } from '../interfaces.js';
export type InputCurrencyProps = {
    decimalLimit?: number;
    errorMessageMin?: (value: string) => string;
    errorMessageMax?: (value: string) => string;
    onChangeDispatcher?: Dispatch<SetStateAction<number>>;
};
export declare function InputCurrency(props: InputProps & InputCurrencyProps): import("react/jsx-runtime").JSX.Element;
