import { ServerTransactionType } from '../../types/serverTransactions.types'; import { TransactionsRowType } from './transactionsTableController.types'; interface TransactionsTableProcessTransactionsParamsType { address: string; egldLabel: string; explorerAddress: string; transactions: ServerTransactionType[]; } export declare class TransactionsTableController { static processTransactions({ address, egldLabel, explorerAddress, transactions }: TransactionsTableProcessTransactionsParamsType): Promise; } export {};