import { z } from 'zod';
export declare const colorsSchema: z.ZodObject<{
    primary: z.ZodString;
    light: z.ZodOptional<z.ZodString>;
    dark: z.ZodOptional<z.ZodString>;
}, "strict", z.ZodTypeAny, {
    primary: string;
    light?: string | undefined;
    dark?: string | undefined;
}, {
    primary: string;
    light?: string | undefined;
    dark?: string | undefined;
}>;
