import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type InternationalBankValidationInteractiveValidateResponseItem = { /** * Indicates whether the IBAN is valid. */ isCorrect?: boolean | undefined; }; export type InternationalBankValidationInteractiveValidateResponse = { items?: Array | undefined; }; /** @internal */ export declare const InternationalBankValidationInteractiveValidateResponseItem$inboundSchema: z.ZodType; export declare function internationalBankValidationInteractiveValidateResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InternationalBankValidationInteractiveValidateResponse$inboundSchema: z.ZodType; export declare function internationalBankValidationInteractiveValidateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=internationalbankvalidationinteractivevalidateresponse.d.ts.map