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 AccountVerificationStatus: { readonly Unverified: "unverified"; readonly Pending: "pending"; readonly Resubmit: "resubmit"; readonly Review: "review"; readonly Verified: "verified"; readonly Failed: "failed"; }; /** * 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 AccountVerificationStatus = ClosedEnum; /** @internal */ export declare const AccountVerificationStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AccountVerificationStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=accountverificationstatus.d.ts.map