import { BankAccountIdentification } from "./bankAccountIdentification"; import { USLocalBankAccountType } from "./uSLocalBankAccountType"; export declare class USLocalAccountIdentification extends BankAccountIdentification { /** * The bank account number, without separators or whitespace. */ "accountNumber": string; "accountType"?: USLocalBankAccountType; /** * The 9-digit [routing number](https://en.wikipedia.org/wiki/ABA_routing_transit_number), without separators or whitespace. */ "routingNumber": string; /** * **usLocal** */ "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 USLocalAccountIdentification { }