import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Possible states an account verification can be in. * * @deprecated enum: This will be removed in a future release, please migrate away from it as soon as possible. */ export declare const VerificationStatus: { readonly Unverified: "unverified"; readonly Pending: "pending"; readonly Verified: "verified"; readonly Errored: "errored"; }; /** * Possible states an account verification can be in. * * @deprecated enum: This will be removed in a future release, please migrate away from it as soon as possible. */ export type VerificationStatus = ClosedEnum; /** @internal */ export declare const VerificationStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const VerificationStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=verificationstatus.d.ts.map