import { z } from 'zod'; export declare const ClusterEntrySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; path: z.ZodString; cloudUrl: z.ZodString; lastSeen: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; path: string; id: string; cloudUrl: string; lastSeen: string; }, { name: string; path: string; id: string; cloudUrl: string; lastSeen: string; }>; export declare const ClusterRegistrySchema: z.ZodObject<{ version: z.ZodLiteral<1>; clusters: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { version: 1; clusters: { name: string; path: string; id: string; cloudUrl: string; lastSeen: string; }[]; }, { version: 1; clusters: { name: string; path: string; id: string; cloudUrl: string; lastSeen: string; }[]; }>; export type ClusterEntry = z.infer; export type ClusterRegistry = z.infer; //# sourceMappingURL=schema.d.ts.map