import { ColorModesEnum } from '../../ThemeProvider'; export declare const themes: readonly ["ai", "collaboration", "enterprise", "security", "productivity"]; export type Themes = (typeof themes)[number]; type Palette = { accent1: string; accent2: string; }; export type ThemeDetailsMap = { [theme in Themes]: { [ColorModesEnum.LIGHT]: Palette; [ColorModesEnum.DARK]: Palette; }; }; export declare const themeDetailsMap: ThemeDetailsMap; export {};