import { z } from 'zod'; export declare const loginSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; password: string; }, { email: string; password: string; }>; export declare const registerSchema: z.ZodObject<{ email: z.ZodString; password: z.ZodString; name: z.ZodOptional; phone: z.ZodOptional; inviteCode: z.ZodOptional; }, "strip", z.ZodTypeAny, { email: string; password: string; name?: string | undefined; phone?: string | undefined; inviteCode?: string | undefined; }, { email: string; password: string; name?: string | undefined; phone?: string | undefined; inviteCode?: string | undefined; }>; export declare const refreshSchema: z.ZodObject<{ refreshToken: z.ZodString; }, "strip", z.ZodTypeAny, { refreshToken: string; }, { refreshToken: string; }>; export type LoginInput = z.infer; export type RegisterInput = z.infer; export type RefreshInput = z.infer; //# sourceMappingURL=auth.schemas.d.ts.map