import { Country } from "./Country";
export declare enum Currency {
    AUD = "AUD",
    CAD = "CAD",
    CHF = "CHF",
    EUR = "EUR",
    GBP = "GBP",
    JPY = "JPY",
    NZD = "NZD",
    USD = "USD"
}
export declare const currencyToCountries: {
    AUD: Country[];
    CAD: Country[];
    CHF: Country[];
    EUR: Country[];
    GBP: Country[];
    JPY: Country[];
    NZD: Country[];
    USD: Country[];
};
