import { KadoAPI } from '@leapwallet/elements-core'; import { SWRConfiguration, SWRResponse } from 'swr'; export type SupportedCurrenciesResult = Awaited>; export type UseKadoCurrencyListReturnType = SWRResponse; /** * React hook to get the list of fiat currencies supported by Kado API */ export declare const useKadoCurrencyListSWR: (enabled?: boolean, options?: SWRConfiguration) => UseKadoCurrencyListReturnType;