import * as z from "zod/v3"; export type BankAccountValidationInteractiveValidateGlobals = { source?: string | undefined; }; export type BankAccountValidationInteractiveValidateRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The bank account number to validate. */ accountNumber: string; /** * The branch sort code for the account number. */ sortCode: string; }; /** @internal */ export type BankAccountValidationInteractiveValidateRequest$Outbound = { Key?: string | undefined; AccountNumber: string; SortCode: string; }; /** @internal */ export declare const BankAccountValidationInteractiveValidateRequest$outboundSchema: z.ZodType; export declare function bankAccountValidationInteractiveValidateRequestToJSON(bankAccountValidationInteractiveValidateRequest: BankAccountValidationInteractiveValidateRequest): string; //# sourceMappingURL=bankaccountvalidationinteractivevalidate.d.ts.map