import { Workbook, Disposable, ICommandService } from '@univerjs/core'; import { IRenderContext, IRenderModule } from '@univerjs/engine-render'; import { IContextMenuService } from '@univerjs/ui'; /** * This controller subscribe to context menu events in sheet rendering views and invoke context menu at a correct * position and with correct menu type. */ export declare class DocContextMenuRenderController extends Disposable implements IRenderModule { private readonly _context; private readonly _contextMenuService; private readonly _commandService; constructor(_context: IRenderContext, _contextMenuService: IContextMenuService, _commandService: ICommandService); private _initPointerDown; private _initEditChange; }