/** * openlore drift — programmatic API * * Detects spec drift: finds code changes not reflected in specs. * No side effects (no process.exit, no console.log). */ import type { DriftResult } from '../types/index.js'; import type { DriftApiOptions } from './types.js'; /** * Detect spec drift in a project. * * Compares code changes against existing OpenSpec specifications * and reports gaps, stale specs, uncovered files, and orphaned specs. * * @throws Error if not a git repository * @throws Error if no openlore configuration found * @throws Error if no specs found * @throws Error if LLM enhanced mode requested but no API key */ export declare function openloreDrift(options?: DriftApiOptions): Promise; //# sourceMappingURL=drift.d.ts.map