/** * `openlore export scip` — emit an `index.scip` derived from the analysis graph. * * Loads the persisted call graph and projects it into SCIP (see * src/core/scip/index.ts). The SQLite/JSON graph remains canonical; this is a * one-way interop export for the Sourcegraph / Glean ecosystem. */ import type { PackageInfo } from '../../core/scip/moniker.js'; export interface ScipExportOptions { out?: string; projectRoot?: string; include?: string[]; exclude?: string[]; } /** * Derive the SCIP `` coordinates for the target project. Reads * package.json when present (npm); otherwise infers the ecosystem from a * manifest file and falls back to the directory name at version 0.0.0. */ export declare function derivePackageInfo(projectRoot: string): PackageInfo; export declare function runScipExport(opts: ScipExportOptions): Promise; //# sourceMappingURL=scip.d.ts.map