import type { IShapeData, ShapeTypeEnum } from '@univerjs-pro/engine-shape'; import type { ICommand, ITransformState } from '@univerjs/core'; import type { ISheetCommandSharedParams } from '@univerjs/sheets'; import type { ISheetDrawingPosition } from '@univerjs/sheets-drawing'; export interface ISetShapeDrawingDataCommandParams extends ISheetCommandSharedParams { shapeId: string; shapeType: ShapeTypeEnum; shapeData?: IShapeData; transform: ITransformState; sheetTransform: ISheetDrawingPosition; axisAlignSheetTransform: ISheetDrawingPosition; } export declare const SetShapeDrawingDataCommand: ICommand;