export { default as tailwindPreset } from './tailwind/preset.js'; declare const THEME_LIGHT: "light"; declare const THEME_DARK: "dark"; declare const themeNames: { readonly light: "light"; readonly dark: "dark"; }; type ThemeName = (typeof themeNames)[keyof typeof themeNames]; export { THEME_DARK, THEME_LIGHT, type ThemeName, themeNames };