export type CurrencyType = {
    symbol: string;
    name: string;
    symbol_native: string;
    decimal_digits: number;
    rounding: number;
    code: string;
    name_plural: string;
};
type CurrenciesType = {
    [key: string]: CurrencyType;
};
export declare const currencies: CurrenciesType;
export {};
