import { z } from 'zod'; declare const QuadrantSchema: z.ZodObject<{ name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; }, { name: string; }>; declare const QuadrantCollectionSchema: z.ZodArray, "many">; type QuadrantType = z.infer; type QuadrantCollectionType = z.infer; export { QuadrantCollectionSchema, type QuadrantCollectionType, QuadrantSchema, type QuadrantType };