import { z } from 'zod';
export declare const appearanceSchema: z.ZodObject<{
    default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
    strict: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    default?: "light" | "dark" | "system" | undefined;
    strict?: boolean | undefined;
}, {
    default?: "light" | "dark" | "system" | undefined;
    strict?: boolean | undefined;
}>;
