/** * Error message dictionary for validation errors * * Maps SDK validation codes to user-friendly messages with titles, * descriptions, and suggested fixes. */ export interface ErrorMessage { /** Short title for the error */ title: string; /** User-friendly description of what went wrong */ description: string; /** Actionable fix suggestion */ suggestedFix: string; } /** * User-friendly error messages keyed by validation code */ export declare const ERROR_MESSAGES: Record; /** * Get user-friendly error message for a validation code * * Falls back to a generic message if the code is not in the dictionary. */ export declare function getErrorMessage(code: string): ErrorMessage; /** * Get severity-appropriate color class */ export declare function getErrorColorClass(severity: "error" | "warning"): { bg: string; border: string; text: string; icon: string; };