import { ServerTransactionType } from '../../../../types/serverTransactions.types'; interface IGetTransactionAssetsParams { transaction: ServerTransactionType; userIsReceiver: boolean; egldLabel?: string; } export interface ITransactionAsset { assetPrefix: string; assetTicker: string; assetAmount: string; assetImage?: string; assetPrice?: string; type: string; } export declare const getTransactionAssets: ({ transaction, userIsReceiver, egldLabel }: IGetTransactionAssetsParams) => ITransactionAsset[]; export {};