import { z } from 'zod';
export declare const themes: readonly ["mint", "maple", "palm", "willow", "linden"];
export declare const themeSchema: z.ZodEnum<["mint", "maple", "palm", "willow", "linden"]>;
export type ThemeType = z.infer<typeof themeSchema>;