import { z } from 'zod'; export declare const loginSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; }, z.core.$strip>; export declare const registerSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; displayName: z.ZodString; }, z.core.$strip>; export declare const changePasswordSchema: z.ZodObject<{ password: z.ZodString; }, z.core.$strip>; export type LoginInput = z.infer; export type RegisterInput = z.infer; export type ChangePasswordInput = z.infer; export type AuthUser = { id: string; username: string; displayName: string; };