import { z } from 'zod'; declare const ColorsSchema: z.ZodObject<{ background: z.ZodString; grid: z.ZodString; inactive: z.ZodString; }, "strip", z.ZodTypeAny, { background: string; grid: string; inactive: string; }, { background: string; grid: string; inactive: string; }>; type ColorsType = z.infer; export { ColorsSchema, type ColorsType };