/**
 * Representation of response for exchange rates
 */
interface Rates {
    /**
     * Currency and value
     */
    [name: string]: number;
}
export { Rates };
//# sourceMappingURL=Rates.d.ts.map