import * as z from "zod/v3"; export type BankAccountValidationBatchValidateGlobals = { source?: string | undefined; }; export type BankAccountValidationBatchValidateRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The bank account number to validate. */ accountNumbers: Array; /** * The branch sortcode for the account number. */ sortCodes: Array; }; /** @internal */ export type BankAccountValidationBatchValidateRequest$Outbound = { Key?: string | undefined; AccountNumbers: Array; SortCodes: Array; }; /** @internal */ export declare const BankAccountValidationBatchValidateRequest$outboundSchema: z.ZodType; export declare function bankAccountValidationBatchValidateRequestToJSON(bankAccountValidationBatchValidateRequest: BankAccountValidationBatchValidateRequest): string; //# sourceMappingURL=bankaccountvalidationbatchvalidate.d.ts.map