interface ExchangeRateFooterProps { hasDynamicPricing: boolean; rate: { value: string | null; display: string | null; provider: string | null; providerDisplay: string | null; fetchedAt: number | null; status: 'loading' | 'available' | 'unavailable'; }; slippage: { percent: number; set: (config: { mode: string; percent: number; base_currency?: string; }) => Promise; }; currencySymbol: string; isSubscription: boolean; } export default function ExchangeRateFooter({ hasDynamicPricing, rate, slippage, currencySymbol, isSubscription, }: ExchangeRateFooterProps): import("react").JSX.Element | null; export {};