import type { FetchedCurrencies } from "../../records/Currency"; export declare type Module = "search" | "booking" | "mmb"; export declare type Options = { url?: string; }; declare type Params = { module?: Module; options?: Options; }; declare const getAll: ({ module, options }?: Params) => Promise; export default getAll;