import * as React from 'react';
export default class ErrorBoundary extends React.Component<{}, any> {
    constructor(props: any);
    componentDidCatch(error: any, info: any): void;
    render(): {};
}
