import type { Currencies } from "../../records/Currency"; export declare type Module = "search" | "booking" | "mmb"; export declare const URL_LAUNCHPAD = "https://finance-launchpad.skypicker.com"; export declare const URL_RATES = "https://rates-finance.skypicker.com/"; declare type Params = { module?: Module; url?: string; }; declare const getCurrencies: ({ module, url }?: Params) => Promise; export default getCurrencies;