import { z } from 'zod'; export declare enum UserIdentityProvider { EMAIL = "EMAIL", GOOGLE = "GOOGLE", SAML = "SAML", JWT = "JWT" } export declare const UserIdentity: z.ZodObject<{ firstName: z.ZodString; lastName: z.ZodString; email: z.ZodString; password: z.ZodString; trackEvents: z.ZodBoolean; newsLetter: z.ZodBoolean; verified: z.ZodBoolean; tokenVersion: z.ZodOptional; provider: z.ZodEnum; imageUrl: z.ZodOptional>; id: z.ZodString; created: z.ZodPipe, z.ZodString>; updated: z.ZodPipe, z.ZodString>; }, z.core.$strip>; export type UserIdentity = z.infer; //# sourceMappingURL=user-identity.d.ts.map