/// export declare const generateDestinationTooltip: ({ destination, amount: formattedSum, }: { destination?: { reverse_destinations?: boolean | undefined; amount: number; currency: string; count: number; destination: Array<{ id: string; amount: number; currency: string; transfer?: { id: string; amount: number; currency: string; }; reverse_transfer?: { id: string; amount: number; currency: string; }; }>; } | undefined; amount: { integerAmount: string; decimalAmount: string; }; }) => import("react").JSX.Element;