import { z } from 'zod'; export declare const UserWithoutPassword: z.ZodObject<{ id: z.ZodString; platformId: z.ZodOptional>; externalId: z.ZodOptional>; status: z.ZodEnum; platformRole: z.ZodEnum; }, z.core.$strip>; export type UserWithoutPassword = z.infer; export declare const AuthenticationResponse: z.ZodObject<{ id: z.ZodString; platformId: z.ZodOptional>; externalId: z.ZodOptional>; status: z.ZodEnum; platformRole: z.ZodEnum; email: z.ZodString; firstName: z.ZodString; lastName: z.ZodString; trackEvents: z.ZodBoolean; newsLetter: z.ZodBoolean; verified: z.ZodBoolean; token: z.ZodString; projectId: z.ZodString; }, z.core.$strip>; export type AuthenticationResponse = z.infer; //# sourceMappingURL=authentication-response.d.ts.map