import { CustomRule, BrainInsight, FileChange } from '../types.js'; export declare class CustomRulesEngine { private rules; private projectDir; constructor(projectDir: string); load(): Promise; getRules(): CustomRule[]; addRule(rule: Omit): CustomRule; removeRule(id: string): boolean; applyRules(changes: FileChange[]): BrainInsight[]; save(): void; private normalizeRule; } //# sourceMappingURL=custom-rules.d.ts.map