/** * openlore analyze — programmatic API * * Runs static analysis on the codebase (no LLM required). * No side effects (no process.exit, no console.log). */ import type { AnalyzeApiOptions, AnalyzeResult } from './types.js'; /** * Run static analysis on the codebase. * * Scans the repository, builds a dependency graph, and generates * analysis artifacts. No LLM involvement. * * @throws Error if no openlore configuration found */ export declare function openloreAnalyze(options?: AnalyzeApiOptions): Promise; //# sourceMappingURL=analyze.d.ts.map