/** * CustomRulesScanner — runs user-defined pattern rules from .sentori.yml * * Only registered when a .sentori.yml with at least one rule is present. */ import { ScanResult } from '../types'; import { CustomRule } from '../config/sentori-config'; export declare const CUSTOM_RULES_SCANNER_NAME = "Custom Rules"; export declare function runCustomRules(targetDir: string, rules: CustomRule[]): Promise; /** ScannerModule-compatible wrapper for the registry */ export declare const customRulesScanner: (rules: CustomRule[]) => { name: string; description: string; scan(targetDir: string): Promise; }; //# sourceMappingURL=custom-rules-scanner.d.ts.map