import { z } from 'zod';
export declare const ColorValue: z.ZodEffects<z.ZodString, string, string>;
export type ColorValue = z.infer<typeof ColorValue>;
export declare const Color: z.ZodObject<{
    name: z.ZodString;
    value: z.ZodEffects<z.ZodString, string, string>;
}, "strip", z.ZodTypeAny, {
    value?: string;
    name?: string;
}, {
    value?: string;
    name?: string;
}>;
export type Color = z.infer<typeof Color>;
