import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BankAccountVerificationMethod } from "./bankaccountverificationmethod.js"; import { BankAccountVerificationStatus } from "./bankaccountverificationstatus.js"; export type BankAccountVerificationCreated = { verificationMethod: BankAccountVerificationMethod; status: BankAccountVerificationStatus; }; /** @internal */ export declare const BankAccountVerificationCreated$inboundSchema: z.ZodType; /** @internal */ export type BankAccountVerificationCreated$Outbound = { verificationMethod: string; status: string; }; /** @internal */ export declare const BankAccountVerificationCreated$outboundSchema: z.ZodType; export declare function bankAccountVerificationCreatedToJSON(bankAccountVerificationCreated: BankAccountVerificationCreated): string; export declare function bankAccountVerificationCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bankaccountverificationcreated.d.ts.map