import { default as React } from 'react'; import { StructuredError } from '../api/types'; interface StructuredErrorDisplayProps { error: StructuredError; onRetry?: () => void; } /** * StructuredErrorDisplay Component * * Displays errors in a user-friendly format with: * - Error category and icon * - User-friendly message * - Suggested action * - Retry option for retryable errors * - Expandable technical details */ declare const StructuredErrorDisplay: React.FC; export default StructuredErrorDisplay;