import { PlotScope } from './PlotScope'; export declare class PlotCursor { scope: PlotScope; constructor(scope: PlotScope); render(event: any): void; renderCursorX(x: any, height: any, topMargin: any, bottomMargin: any): void; renderCursorY(y: any, width: any, leftMargin: any, rightMargin: any): void; renderCursorLabel(axis: any, id: any, y: any, alignRight: any): void; clear(): void; }