export interface ThemeMenuProps { /** Show the light/dark/system appearance toggle above the color themes. Default true. */ showAppearance?: boolean; /** Default color theme applied when nothing is persisted. Default "modern-minimal". */ defaultColorTheme?: string; } /** * Composable shadcn theme switcher rendered as a fragment of dropdown items. * Drop it inside any `DropdownMenuContent` (e.g. via `CategoryDock`'s menu render prop). * * Handles the light/dark/system appearance toggle (via next-themes) and the shadcn * color-theme picker with hover preview, persisting the selection to localStorage and a * cookie and toggling the `theme-` class on the document element. */ export declare function ThemeMenu({ showAppearance, defaultColorTheme, }?: ThemeMenuProps): import("react").JSX.Element;