import { Component, ReactNode } from 'react'; interface Props { children: ReactNode; } interface State { hasError: boolean; } export declare class EditorErrorBoundary extends Component { constructor(props: Props); static getDerivedStateFromError(): State; componentDidCatch(error: Error, errorInfo: React.ErrorInfo): void; render(): string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined; } export {};