/** * SUTRA-16.1/16.2 — hooks config loader + runner. */ import type { SutraIssue } from "./types.js"; export declare const HOOKS_FILE = "hooks.json"; export interface HooksConfig { post_scan?: string[]; } export declare function loadHooksConfig(repoRoot: string): HooksConfig; export declare function runPostScanHooks(repoRoot: string, graphPath: string): SutraIssue[];