type Rates = {
    [key: string]: number;
};
type Convert = (amount: number, from: string, to: string) => number;
type Currencies = {
    rates: Rates;
    convert: Convert;
};
declare function loadCurrencies(): Promise<Currencies>;

export { loadCurrencies };
