import { z } from 'zod';
export declare const backgroundSchema: z.ZodObject<{
style: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
}, "strip", z.ZodTypeAny, {
style?: "gradient" | "grid" | "windows" | undefined;
}, {
style?: "gradient" | "grid" | "windows" | undefined;
}>;