import { ChartMenu } from './ChartMenu';
import { HTMLEditor } from '../../../core/HTMLEditor.ts';
export declare class ChartContextMenu {
    private chartMenu;
    private contextMenu;
    private activeChart;
    constructor(editor: HTMLEditor, chartMenu: ChartMenu);
    private handleEdit;
    private handleDelete;
    show(chart: HTMLElement, x: number, y: number): void;
    hide(): void;
    destroy(): void;
}
