import { z } from 'zod'; export declare class Users { itemSchema: z.ZodObject<{ Path: z.ZodString; UserName: z.ZodString; }, "passthrough", z.ZodTypeAny, { Path: string; UserName: string; }, { Path: string; UserName: string; }>; collectionSchema: z.ZodArray, "many">; listUsers(): Promise>; list(): Promise>; clear(): Promise; write(): Promise; } declare const _default: Users; export default _default; //# sourceMappingURL=users.d.ts.map