import { z } from 'zod/v4'; export declare const UserObject: z.ZodObject<{ id: z.ZodString; encryption: z.ZodLiteral<"none">; flow: z.ZodOptional; level: z.ZodOptional; }, z.core.$strip>; export type UserObject = z.infer;