import { AccountDataSnapshotJSON } from '../interfaces';
import { Account } from './Account';
import { Transaction } from './Transaction';
/** Account data. */
export declare class AccountDataSnapshot {
    /** @internal */
    json: AccountDataSnapshotJSON;
    /** Account. */
    account: Account;
    /** Account's transactions. */
    transactions: Array<Transaction>;
    /** @internal */
    constructor(json: AccountDataSnapshotJSON);
}
