import { ProjectConfig, CustomRule } from '../types.js'; export declare class ProjectConfigLoader { private projectDir; private config; constructor(projectDir: string); load(): ProjectConfig; get(): ProjectConfig; getIgnorePatterns(): string[]; getCustomRules(): CustomRule[]; getNotificationConfig(): ProjectConfig['notifications']; save(config: ProjectConfig): void; shouldIgnore(filePath: string): boolean; } //# sourceMappingURL=project-config.d.ts.map