import { ThemeEditor, EditorTheme, ThemePreset } from '../../core/theme-editor'; import { ChartPlugin } from '../types'; export interface PluginThemeEditorConfig { /** Initial theme to edit */ initialTheme?: string; /** Position in the UI */ position?: "left" | "right"; } /** * VeloPlot Theme Editor Plugin * * Adds a visual panel to customize chart colors and styles. */ export declare function PluginThemeEditor(_config?: PluginThemeEditorConfig): ChartPlugin; export { ThemeEditor }; export type { EditorTheme, ThemePreset }; export default PluginThemeEditor;