import { Command, type Viewer3d } from "@x-viewer/core"; import type { SceneMeshSnapshot } from "../SceneMeshSnapshot"; export declare class GeometryEditCommand extends Command { private readonly viewer; private readonly before; private readonly after; constructor(viewer: Viewer3d, before: SceneMeshSnapshot, after: SceneMeshSnapshot); undo(): boolean; redo(): boolean; }