import { BankAccountIdentification } from "./bankAccountIdentification";
import { CALocalBankAccountType } from "./cALocalBankAccountType";
export declare class CALocalAccountIdentification extends BankAccountIdentification {
    /**
    * The 5- to 12-digit bank account number, without separators or whitespace.
    */
    "accountNumber": string;
    "accountType"?: CALocalBankAccountType;
    /**
    * The 3-digit institution number, without separators or whitespace.
    */
    "institutionNumber": string;
    /**
    * The 5-digit transit number, without separators or whitespace.
    */
    "transitNumber": string;
    /**
    * **caLocal**
    */
    "type": string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace CALocalAccountIdentification {
}
