import React from 'react'; type Props = any; type State = { error: any; errorInfo: any; }; declare class ErrorBoundary extends React.Component { constructor(props: Props); componentDidCatch(error: any, errorInfo: any): void; render(): React.ReactNode; } export default ErrorBoundary;