import { z } from 'zod'; export declare const userSchema: z.ZodObject<{ id: z.ZodString; email: z.ZodString; passwordHash: z.ZodOptional; createdAt: z.ZodString; }, z.core.$strip>; export type User = z.infer; export declare const createUserRequest: z.ZodObject<{ email: z.ZodString; password: z.ZodString; }, z.core.$strip>; export type CreateUserRequest = z.infer; export declare const userResponse: z.ZodObject<{ id: z.ZodString; email: z.ZodString; createdAt: z.ZodString; }, z.core.$strip>; export type UserResponse = z.infer; //# sourceMappingURL=user.d.ts.map