import * as React from 'react'; export default class ErrorBoundary extends React.Component<{ children: React.ReactNode; }, { hasError: boolean; }> { constructor(props: { children: React.ReactNode; }); static getDerivedStateFromError(): { hasError: boolean; }; componentDidCatch(error: Error, errorInfo: any): void; render(): number | boolean | React.ReactElement React.ReactElement | null) | (new (props: any) => React.Component)> | React.ReactFragment | null | undefined; }