import { ThemeMode } from './types'; interface ThemeSubmenuProps { anchorEl: HTMLElement | null; selectedTheme: ThemeMode; onSelect: (mode: ThemeMode) => void; onClose: () => void; } export declare function ThemeSubmenu({ anchorEl, selectedTheme, onSelect, onClose }: ThemeSubmenuProps): import("react/jsx-runtime").JSX.Element; export {};