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