import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Types of documents that can be uploaded. */ export declare const DocumentType: { readonly DriversLicense: "driversLicense"; readonly Passport: "passport"; readonly UtilityBill: "utilityBill"; readonly BankStatement: "bankStatement"; }; /** * Types of documents that can be uploaded. */ export type DocumentType = ClosedEnum; /** @internal */ export declare const DocumentType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DocumentType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=documenttype.d.ts.map