import type { Currency } from "../../records/Currency"; import type { Brand } from "../../records/Brand"; declare type Input = { path: string; ip: string; brand: Brand; cookies: Record; }; declare const getCurrency: ({ path, ip, brand, cookies }: Input) => Promise; export default getCurrency;