/** * Extract an inline override-comment's reason that targets a specific * rule name. Returns the trimmed reason, or null when no override * addressed to `ruleName` is present (empty reasons are treated as * "no override" — users must supply an explicit justification). * * Behaviour parity with v1 `extractOverride`: * * - case-sensitive rule-name match, * - supports stacked overrides on one line (e.g. * `cmd # steering-override: a — r1 # steering-override: b — r2`), * - first-match-wins across the scanned comments, * - all leader styles from v1 accepted. * * The v1 implementation is the authoritative reference for edge cases * — see `evaluator.ts` in this package's v1 tree. */ export declare function extractOverride(text: string, ruleName: string): string | null; //# sourceMappingURL=override.d.ts.map