/// <reference types="react" />
import './CurrencyInput.scss';
import type { Currency } from './CurrencyInputTypes';
declare const CurrencyInput: import("react").ForwardRefExoticComponent<import("index").TextInputProps & {
    onCurrencyChange?: ((currency: Currency) => void) | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;
export default CurrencyInput;
