import { SGraphCommand } from "./SGraphCommand"; import { SGraphItem } from "../SGraphItem"; import { SGraphScene } from "../SGraphScene"; export declare class SGraphPropertyCommand extends SGraphCommand { readonly command: string; item: SGraphItem; propName: string; oldProp: T; newProp: T; constructor(scene: SGraphScene, item: SGraphItem, propName: string, oldProp: T, newProp: T); redo(): void; undo(): void; toString(): string; }