import type { WorkspaceManifestV2 } from "./long-task-delivery-types.js"; export interface WorkspaceSnapshotV2 { root: string; manifest: WorkspaceManifestV2; preparation_ms: number; dispose(): Promise; } export declare function createWorkspaceSnapshot(rootInput: string, workdirInput: string, label: string, additionalExcludedWorkdirs?: string[]): Promise;