import { type QRL } from '@builder.io/qwik'; import { type Locale } from '../paraglide/runtime.js'; export declare function themeToName(theme: string, displayLocale?: Locale): string; export declare const THEMES: string[]; /** * Properties for ThemeSelector. */ export interface ThemeSelectorProps { /** * List of themes to show in the dropdown. Default is all themes. */ themes?: string[]; /** * Callback function that is called when the theme changes. */ onValueChange$?: QRL<(theme: string) => void>; } /** * ThemeSelector drop down component. This will save theme selection to localStorage under 'theme'. */ export declare const ThemeSelector: import("@builder.io/qwik").Component;