import * as React from "react";
import { ErrorBoundaryPropsInterface } from "..";
export declare class ErrorBoundary extends React.Component<ErrorBoundaryPropsInterface> {
    state: {
        error: Error;
    };
    resetState: (goHome?: boolean) => any;
    static getDerivedStateFromError(error: any): {
        error: any;
    };
    componentDidUpdate(prevProps: any): void;
    componentDidCatch(error: any, info: any): void;
    render(): {};
}
