import { type AnalysisResult } from "../analysis/interrupts.js"; import type { AgencyConfig } from "../config.js"; /** * `agency interrupts `: statically print every interrupt site * reachable from `file` and the set of handle blocks that could be on * the active stack at each site. Plain text output; no color, no JSON. */ export declare function interruptsCmd(config: AgencyConfig, file: string): void; export declare function renderInterrupts(result: AnalysisResult): string;