import { Uri } from "vscode"; import { SnapshotEvent, Snapshotter } from "./snapshot"; export declare class WorkspaceSnapshotter implements Snapshotter { /** * Handles a snapshot event by writing the snapshot to disk and notifying the user of the path. * Returns the path. */ save(event: SnapshotEvent): Promise; }