import type React from 'react';
interface ErrorMessageProps {
    errorMsg: string;
    retryAgentConnection?: () => void;
    goToLogs: () => void;
}
export declare const ErrorMessage: React.FC<ErrorMessageProps>;
export {};
