import React from "react"; export interface ErrorDisplayProps { error: string; stack?: string; showStack?: boolean; logFile?: string; } export declare const ErrorDisplay: React.FC;