import { ThemeConfig } from 'antd'; export type ThemeType = 'dark' | 'light'; /** * 获取 PropertyPanel 的 Ant Design 主题配置 * @param themeType 主题类型:'dark' | 'light' * @returns Ant Design ThemeConfig 对象 */ export declare const getPropertyPanelTheme: (themeType: ThemeType) => ThemeConfig; export declare const DARK_THEME: ThemeConfig; export declare const LIGHT_THEME: ThemeConfig;