import type { Scene } from '@univerjs/engine-render'; import type { IDrawingShapeData } from '../view-model/drawing-shape'; import { SheetsShapeService } from '@univerjs-pro/sheets-shape'; import { Disposable, LocaleService } from '@univerjs/core'; import { IDrawingManagerService } from '@univerjs/drawing'; import { DrawingShape } from '../view-model/drawing-shape'; export declare class SheetDrawingShapeRenderController extends Disposable { private readonly _drawingManagerService; private readonly _sheetsShapeService; private readonly _localeService; constructor(_drawingManagerService: IDrawingManagerService, _sheetsShapeService: SheetsShapeService, _localeService: LocaleService); renderDrawingShape(drawingShapeParam: IDrawingShapeData, scene: Scene): DrawingShape[] | undefined; }