import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CompleteBankAccountVerification = { /** * Code provided by user from their bank account transactions */ code: string; }; /** @internal */ export declare const CompleteBankAccountVerification$inboundSchema: z.ZodType; /** @internal */ export type CompleteBankAccountVerification$Outbound = { code: string; }; /** @internal */ export declare const CompleteBankAccountVerification$outboundSchema: z.ZodType; export declare function completeBankAccountVerificationToJSON(completeBankAccountVerification: CompleteBankAccountVerification): string; export declare function completeBankAccountVerificationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=completebankaccountverification.d.ts.map