/// import { TokenBalance } from '@dynamic-labs/sdk-api-core'; import { IUITransaction } from '@dynamic-labs/types'; export declare const SendBalanceTransactionCard: ({ transaction, currentToken, currencySymbol, valueRounded, transactionValue, isGasSponsored, gasFiatValue, totalGasFiatValue, currency, total, t, onFeeUpdate, }: { transaction: IUITransaction; currentToken: TokenBalance | undefined; currencySymbol: string | undefined; valueRounded?: string; transactionValue: string | undefined; isGasSponsored: boolean; gasFiatValue: string; totalGasFiatValue: string; currency: string | undefined; total: bigint | undefined; t: (key: string) => string; onFeeUpdate?: () => void; }) => JSX.Element;