import * as React from "react"; import { ThemeProps } from "../../theme"; import { LoggingPanelChildrenProps } from "./ErrorUI.definitions"; interface ErrorUIControlsState { isModalOpen: boolean; isShowingErrors: boolean; } type ErrorUIProps = LoggingPanelChildrenProps & ThemeProps; export declare enum IconType { NOTIFICATION_OPERATIONAL = "NotificationOperational", FLEX_DEBUGGER = "FlexDebugger", NOTIFICATION_DEGRADED = "NotificationDegraded" } export declare class ErrorUIImpl extends React.Component { private maxErrorsToShow; private getErrorsToDisplay; private buttonRef; private getAllErrors; private getIconType; private sendClickedTelemetryEvent; render(): JSX.Element; } export {};