import { ITransactionListItem } from '../../../../lib/sdkDappUi'; import { StoreType } from '../../../../store/store.types'; import { SignedTransactionType } from '../../../../types/transactions.types'; interface IMapServerTransactionsToListItemsParams { transactions: SignedTransactionType[]; store?: StoreType; } export declare const mapServerTransactionsToListItems: ({ transactions, ...props }: IMapServerTransactionsToListItemsParams) => Promise; export {};