/** * Create a new workspace config with the given project paths. * Auto-detects interfaces by scanning each project directory. */ export declare function workspaceInit(name: string, projectPaths: string[]): Promise; /** * Show workspace health: projects, staleness, contract/edge counts. * If name is omitted, shows all workspaces. */ export declare function workspaceStatus(name?: string): Promise; /** * Trigger cross-repo indexing for all projects in the workspace. * This registers each project in the cross-db with current git SHA. * Actual contract extraction and edge linking will be done by * specialized extractors (GraphQL, OpenAPI, etc.) in future phases. */ export declare function workspaceIndex(name: string): Promise;