import { PurchaseAmountItem } from "../../../types"; export declare function useExchangedData(data: PurchaseAmountItem[], shouldExchange: boolean, toCurrency?: string, exchangeRates?: Record): { exchangedData: { amount: string; currency: string; site_code: string; }[]; totalAmount: number; onlyExchangedCurrency: boolean; exchangeAvailable: boolean; };