import { z } from 'zod'; import type { RegisterRequest } from '../../../types/auth'; export declare const DEFAULT_VALIDATION_SCHEMA_WITH_NAME: z.ZodObject<{ name: z.ZodString; password: z.ZodString; email: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; email: string; password: string; }, { name: string; email: string; password: string; }>; export declare const DEFAULT_VALIDATION_SCHEMA: z.ZodObject<{ firstName: z.ZodString; lastName: z.ZodString; password: z.ZodString; email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; password: string; firstName: string; lastName: string; }, { email: string; password: string; firstName: string; lastName: string; }>; export declare const DEFAULT_INITIAL_VALUES: RegisterRequest; //# sourceMappingURL=constants.d.ts.map