import { ITransactionListItem } from '../../../../lib/sdkDappUi'; import { ServerTransactionType } from '../../../../types/serverTransactions.types'; interface IMapTransactionToListItemParamsType { transaction: ServerTransactionType; isPending?: boolean; profileImages?: Record; address: string; explorerAddress: string; egldLabel: string; } export declare const mapTransactionToListItem: ({ transaction, isPending, address, explorerAddress, egldLabel }: IMapTransactionToListItemParamsType) => ITransactionListItem; export {};