/** * `openlore spec-store` — inspect a spec-store binding (change: add-spec-store-binding). * * A spec-store binding (.openlore/config.json "specStore") points OpenLore at an * external spec repository whose declared target/reference repositories are * resolved against the federation registry. `status` reports the binding's * health as conclusion-shaped findings with stable codes. Read-only; it never * blocks and always exits 0 (an unhealthy binding is reported, not fatal). */ import { Command } from 'commander'; export interface SpecStoreStatusCliOptions { cwd?: string; json?: boolean; } /** * Run `spec-store status`. Read-only; returns the process exit code (always 0 — * the command reports binding health, it never fails the caller). Exported for * unit testing. */ export declare function runSpecStoreStatusCli(opts: SpecStoreStatusCliOptions): Promise; export declare const specStoreCommand: Command; //# sourceMappingURL=spec-store.d.ts.map