import * as astro from 'astro'; /** * Astro Dev Toolbar App for theme switching * Uses native Astro Dev Toolbar components for consistent UI */ declare global { interface Window { __ASTRO_THEMES__?: { theme: string; resolvedTheme: string; systemTheme: "dark" | "light"; forcedTheme?: string; themes: string[]; setTheme: (theme: string | ((prevTheme: string) => string)) => void; }; } } declare const _default: astro.DevToolbarApp; export { _default as default };