import React from 'react'; export interface IThemeManagementContentProps { onThemeSelect?: (themeId: string, mode: 'light' | 'dark') => void; } export declare const ThemeManagementContent: React.FC;