/** * `openlore briefing-since` — the change significance briefing's CLI surface * (change: add-change-significance-briefing). * * Prints the conclusion-shaped, tier-ranked briefing of what changed since a base * ref (the same report the `briefing_since` MCP tool returns) so a reviewer, a * returning engineer, or a CI job can see which changes structurally matter without * an MCP client. Read-only, deterministic, offline. Not a hook and never blocks — it * is a report. The cursor is the base ref, never wall-clock time. */ import { Command } from 'commander'; export interface BriefingSinceCliOptions { cwd?: string; base?: string; filePattern?: string; max?: number; json?: boolean; } export declare function runBriefingSinceCli(opts: BriefingSinceCliOptions): Promise; export declare const briefingSinceCommand: Command; //# sourceMappingURL=briefing-since.d.ts.map