import type { DetectedError } from '../errors/pattern-matcher.js'; export interface ErrorResolution { errorType: string; description: string; solution: string; codeExample?: string; } export declare class ResolutionDatabase { private resolutions; constructor(); getResolution(error: DetectedError): ErrorResolution | null; private initializeDefaultResolutions; addResolution(resolution: ErrorResolution): void; } //# sourceMappingURL=resolution-db.d.ts.map