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