import { z } from 'zod'; declare const RingSchema: z.ZodObject<{ name: z.ZodString; color: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; color: string; }, { name: string; color: string; }>; declare const RingCollectionSchema: z.ZodArray, "many">; type RingType = z.infer; type RingCollectionType = z.infer; export { RingCollectionSchema, type RingCollectionType, RingSchema, type RingType };