import React from 'react';
import { ErrorInfo, ErrorSuggestion } from './ErrorDetector';
interface ErrorModalProps {
    isOpen: boolean;
    error: ErrorInfo | null;
    suggestion: ErrorSuggestion | null;
    onClose: () => void;
    onFixIt?: (error: ErrorInfo, suggestion: ErrorSuggestion) => void;
    fixItEnabled?: boolean;
}
export declare const ErrorModal: React.FC<ErrorModalProps>;
export {};
