export declare class HKLocalAccountIdentification {
    /**
    * The 9- to 17-digit bank account number, without separators or whitespace. Starts with the 3-digit branch code.
    */
    "accountNumber": string;
    /**
    * The 3-digit clearing code, without separators or whitespace.
    */
    "clearingCode": string;
    /**
    * **hkLocal**
    */
    "type": HKLocalAccountIdentification.TypeEnum;
    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 HKLocalAccountIdentification {
    enum TypeEnum {
        HkLocal = "hkLocal"
    }
}
