import { SPoint } from "@persagy-web/draw/lib"; import { SGraphCommand, SGraphItem, SGraphScene } from "../index"; export declare class SGraphPointListDelete extends SGraphCommand { readonly command: string; item: SGraphItem; index: number | null; pos: SPoint | null; pointList: SPoint[]; constructor(scene: SGraphScene, item: SGraphItem, pointList: SPoint[], pos: SPoint, index?: number | null); redo(): void; undo(): void; toString(): string; }