import { TransactionServerStatusesEnum } from '../../types/enums.types'; import { ServerTransactionType } from '../../types/serverTransactions.types'; export interface GetTransactionsType { apiAddress: string; apiTimeout?: string | number; sender?: string; receiver?: string; page?: number; transactionSize?: number; after?: number; condition?: 'should' | 'must'; before?: number; withScResults?: boolean; withUsername?: boolean; status?: TransactionServerStatusesEnum; /** * Search in data object */ search?: string; } export declare const getTransactions: ({ apiAddress, apiTimeout, sender, receiver, page, transactionSize, condition, withScResults, after, before, search, status, withUsername }: GetTransactionsType) => Promise>;