/** * The single canonical home for all VideoClaw projects: `~/videoclaw`. * Every project lives at `/projects//`. This is * the default workspace root for project creation, every project-reading * command, and Mission Control discovery — replacing the old per-invocation * `process.cwd()` default that scattered projects wherever `vclaw` happened to * run. */ export declare const CANONICAL_WORKSPACE_ROOT: string; /** * Resolve the workspace root from the environment alone (no CLI flags). * Precedence: `VCLAW_WORKSPACE` → `VIDEOCLAW_WORKSPACE` → the canonical home. * * Used as the default by library/test callers (workspace.ts, projects.ts) that * do not receive a `--root` flag; the arg-aware `resolveWorkspaceRoot` in * cli/args.ts layers explicit-flag precedence on top of this. A blank/whitespace * env value is ignored (falls through to the home), so an empty * `VCLAW_WORKSPACE=` never resolves projects to the filesystem root. */ export declare function resolveWorkspaceRootFromEnv(env?: NodeJS.ProcessEnv): string; //# sourceMappingURL=workspace-root.d.ts.map