import { IGraphicElement } from '../types'; import { EditorHost } from '../core'; export declare function usePropertyCommand(host: EditorHost): { updateProperty: (element: IGraphicElement, propertyPath: string, newValue: any) => void; batchUpdateProperty: (elements: IGraphicElement[], propertyPath: string, newValue: any) => void; };