import type { IShapeData, ShapeTypeEnum } from '@univerjs-pro/engine-shape'; import type { ISheetShape } from '@univerjs/sheets-drawing'; export type ISheetShapeDrawingParam = ISheetShape & { componentKey: string; data: { shapeType: ShapeTypeEnum; shapeData?: IShapeData; disablePopup?: boolean; fill?: boolean; rotateEnabled?: boolean; resizeEnabled?: boolean; borderEnabled?: boolean; }; };