import { type LoadedWorkspaceConfig } from "../config/workspace-config.js"; /** * Find the workspace root for the CLI. * * Resolution order: * 1. Walk up from process.cwd() looking for `codeprism.config.json` * 2. Fall back to process.cwd() (autoDiscover will handle single-repo or multi-repo layouts) * * The `importMetaUrl` parameter is kept for API compatibility but is no longer used. */ export declare function userWorkspaceRootFrom(_importMetaUrl: string): string; /** * Load the full workspace configuration from process.cwd(). */ export declare function loadWorkspace(_importMetaUrl: string): LoadedWorkspaceConfig; //# sourceMappingURL=workspace.d.ts.map