import { z } from 'zod/v4'; export declare const UserObject: z.ZodObject<{ user: z.ZodString; pass: z.ZodString; level: z.ZodOptional; }, z.core.$strip>; export type UserObject = z.infer;