import { type ExchangeCurrencyItem } from '../../components/ExchangeRateTile/ExchangeCurrencyCalculator'; import { type Region } from '../../hooks/useRegions'; export interface ExchangeData { exchangeRate?: { currencies?: ExchangeCurrencyItem[]; }; address?: string; } export declare function useFetchExchangeRateData(currentRegion: Region): ExchangeData;