/** * Error Suggestions * * Pattern-based suggestions for common errors. Maps error message patterns * to actionable user-facing suggestions. Used by PostgresMcpError constructor * for auto-refinement of generic error codes and suggestion auto-detection. * * Complements error-parser.ts (PG-specific error code mapping) by handling * generic message patterns that don't have PG error codes attached. */ import { ErrorCategory } from "../types/error-types.js"; /** * Find a suggestion for an error message */ export declare function findSuggestion(message: string): { suggestion: string; category?: ErrorCategory | undefined; code?: string | undefined; } | null; //# sourceMappingURL=error-suggestions.d.ts.map