/** * openlore verify — programmatic API * * Tests generated spec accuracy against actual source code. * No side effects (no process.exit, no console.log). */ import type { VerifyApiOptions, VerifyResult } from './types.js'; /** * Verify generated specs against actual source code. * * Samples files and validates that specs accurately describe behavior * using an LLM to predict behavior from specs and compare against code. * * @throws Error if no openlore configuration found * @throws Error if no specs or analysis found * @throws Error if no LLM API key found * @throws Error if no verification candidates found */ export declare function openloreVerify(options?: VerifyApiOptions): Promise; //# sourceMappingURL=verify.d.ts.map