export interface WorkspaceScope { name: string; path: string; description?: string; } export interface WorkspaceUmbrella { path: string; description?: string; } export interface WorkspaceConfig { scopes: WorkspaceScope[]; umbrella?: WorkspaceUmbrella; } export declare function readWorkspaceConfig(projectPath: string): WorkspaceConfig | null; export declare function writeWorkspaceConfig(projectPath: string, config: WorkspaceConfig): void; export declare function detectMonorepoScopes(projectPath: string): WorkspaceScope[]; export declare function isWorkspace(projectPath: string): boolean; //# sourceMappingURL=workspace.d.ts.map