import * as React from "react";
import { type CurrencyValueType } from "../lib/currency.utils";
export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    name: string;
    label?: string;
    Icon?: React.ElementType;
    iconClassName?: string;
    containerClassName?: string;
    iconAction?: React.MouseEventHandler<HTMLDivElement>;
    cpf?: boolean;
    cep?: boolean;
    currency?: boolean;
    currencyCode?: string;
    currencyLocale?: string;
    currencyValueType?: CurrencyValueType;
}
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
export { Input };
