import * as Types from '../types/Types.js'; interface CurrencyExchangeRateListResponse extends Types.APIResponse { currency_exchange_rates: Array; meta: Types.ListMeta; } interface CurrencyExchangeRateListRequest { after?: string; before?: string; limit?: string; source?: string; target?: string; } export declare class CurrencyExchangeRateService { private api; constructor(api: any); list(requestParameters: CurrencyExchangeRateListRequest, customHeaders?: Types.JsonMap): Promise; all(requestParameters: CurrencyExchangeRateListRequest, customHeaders?: Types.JsonMap): AsyncGenerator; } export {}; //# sourceMappingURL=currencyExchangeRateService.d.ts.map