export interface ThemeSelectProps { theme: string; setTheme: (theme: string) => void; } export declare function ThemeSelect({ theme, setTheme }: ThemeSelectProps): import("react/jsx-runtime").JSX.Element;