export * from './i-command'; export * from './base-command'; export * from './add-element-command'; export * from './remove-element-command'; export * from './transform-element-command'; export * from './update-property-command'; export * from './update-canvas-property-command'; export * from './clear-selection-command'; export * from './batch-command'; export * from './change-layer-order-command'; export * from './reorder-elements-command'; export * from './align-elements-command'; export * from './distribute-elements-command'; export * from './clear-selection-command'; export declare class CommandUtils { static createBatchFromSelection(host: any, commandClass: any, ...args: any[]): Promise; static isTransformCommand(command: any): boolean; static isPropertyCommand(command: any): boolean; }