import { RequestConfig } from '../requestConfig'; export interface GetCurrencyRatesResponse { success: { result: Record; }; } export declare function getCurrencyRates(config: RequestConfig): { readonly id: "getCurrencyRates"; readonly path: "/parse/functions/getCurrencyRates"; readonly method: "POST"; readonly body: {}; };