/** * DEC-087: gather the NHI posture snapshot from a local store for * `auditNhiPosture` (core). Shared by the CLI (`nhi report`) and the MCP tool * (`h2a_nhi_report`) so both classify the same registry view. Pure read. */ import type { H2ANhiInstanceSnapshot, H2ANhiKeyEventSnapshot, H2ANhiOffboardSnapshot, H2ANhiSubagentSnapshot } from "@sentropic/h2a"; import type { LocalStore } from "./local-files/store.js"; export interface H2ANhiSnapshot { instances: H2ANhiInstanceSnapshot[]; subagents: H2ANhiSubagentSnapshot[]; keyEvents: H2ANhiKeyEventSnapshot[]; offboards: H2ANhiOffboardSnapshot[]; } export declare function gatherNhiSnapshot(store: LocalStore): H2ANhiSnapshot; //# sourceMappingURL=nhi.d.ts.map