import { InterpretedTransactionType } from '../../../../types/serverTransactions.types'; import { EgldValueDataType, NFTValueDataType, TokenValueDataType } from './types'; export interface GetTransactionValueReturnType { egldValueData?: EgldValueDataType; tokenValueData?: TokenValueDataType; nftValueData?: NFTValueDataType; } export interface GetTransactionValueType { hideMultipleBadge?: boolean; transaction: InterpretedTransactionType; } export declare const getTransactionValue: ({ transaction, hideMultipleBadge }: GetTransactionValueType) => GetTransactionValueReturnType;