import type { Currency, Currencies } from "../../records/Currency"; export declare type Input = { currencies: Currencies; initialCurrency?: string; countryCurrency?: string; languageCurrency: string; affiliate: string; brandCurrencies: string[]; mostUsedCurrencies?: string[]; }; export declare type Payload = { currency: Currency; available: Currencies; recommended: Currency[]; }; declare const init: ({ currencies, initialCurrency, countryCurrency, languageCurrency, affiliate, brandCurrencies, mostUsedCurrencies, }: Input) => Payload; export default init;