import { View } from "./view";
import { Transaction } from "@burstjs/core";
export interface AccountData {
    id: string;
    balance: string;
    transactions: Transaction[];
}
export declare class TransactionTableView implements View {
    private parentView;
    private readonly table;
    private loadingText;
    private titleText;
    constructor(parentView: any);
    readonly element: any;
    update(state: any, accountId: string, transactions: Transaction[]): void;
    private getRecipientSenderId;
    private getAmount;
    private getPrintableTransactions;
}
