/** * The Phase-2 query command runner (Proposal 006 B4): loads the model, runs one * focused query, writes a staleness-stamped side-channel file, and returns a * compact summary + the file path — the 001 §4.2 shape shared by CLI and MCP. * `inspect` has its own runner (A5); this covers impact/plan/scenario/evidence. */ export type QueryCommand = "impact" | "plan" | "scenario" | "evidence" | "matrix"; export interface QueryResult { command: QueryCommand; id: string; outputPath: string; summary: string; staleWarning?: string; } export declare function runQuery(targetDir: string, command: QueryCommand, id: string): Promise; //# sourceMappingURL=run-query.d.ts.map