import { StatementResponse } from "../common/StatementResponse";
import { BankAccountDetails } from "./BankAccountDetails";
export declare class BankStatementResponse extends StatementResponse {
    private account;
    getResponseMessageName(): string;
    /**
     * The account for the statement.
     *
     * @return The account for the statement.
     */
    getAccount(): BankAccountDetails;
    /**
     * The account for the statement.
     *
     * @param account The account for the statement.
     */
    setAccount(account: BankAccountDetails): void;
}
