import { BasePlugin } from '../../types/base-plugin'; import { IGraphicElement } from '../../types'; export declare class LayerManagerPlugin extends BasePlugin { name: string; version: string; protected onInstall(): void; protected onUninstall(): void; getElementDisplayName(element: IGraphicElement): string; moveLayer(elementId: string, direction: 'up' | 'down' | 'top' | 'bottom'): void; reorder(newOrder: string[]): void; } declare module '../../types' { interface PluginMap { 'layer-manager-plugin': LayerManagerPlugin; } }