export declare class BankAccount {
    /**
    * The text that will appear on your employee\'s bank statement when they receive payment
    */
    'statementText'?: string;
    /**
    * The name of the account
    */
    'accountName'?: string;
    /**
    * The BSB number of the account
    */
    'bSB'?: string;
    /**
    * The account number
    */
    'accountNumber'?: string;
    /**
    * If this account is the Remaining bank account
    */
    'remainder'?: boolean;
    /**
    * Fixed amounts (for example, if an employee wants to have $100 of their salary transferred to one account, and the remaining amount to another)
    */
    'amount'?: number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
