/** * Security Scanner — MF-3 path action-context gate (SMI-5207) * @module @skillsmith/core/security/scanner/SecurityScanner.action-context * * The `sensitive_path` MF-3 gate: given a line that matched one of the nine * PATH_FORM_PATTERNS, decide whether a real ACTION is being taken on that path * (→ HIGH) or the path is merely MENTIONED (→ MEDIUM). MEDIUM is the default; * escalation requires an action verb or shell operator within +/-1 line. * * Split out of SecurityScanner.scanners.ts for the 500-line pre-commit gate, * symmetric with SecurityScanner.value-gate.ts (the MF-4 half). Cohesive unit — * every symbol here serves the single question "is this path being acted on?". */ export declare function hasPathActionContext(lines: string[], index: number): boolean; //# sourceMappingURL=SecurityScanner.action-context.d.ts.map