import * as React from 'react';
import { ItemProps } from '../common/propTypes';
export interface IErrorBoundaryState {
    hasError: boolean;
}
export default class ErrorBoundary extends React.Component<ItemProps, IErrorBoundaryState> {
    constructor(props: ItemProps);
    componentDidCatch(error: any, info: any): void;
    render(): any;
}
