import * as React from 'react';
import { CSSProperties } from 'styled-components';
interface IError {
    name: string;
    message: string;
}
interface IProps {
    ErrorMessage: string;
    Style?: CSSProperties;
    ClassName?: string;
    ErrorIconSize?: number;
}
export default class ErrorBoundary extends React.Component<IProps, IError> {
    constructor(props: IProps);
    componentDidCatch(error: IError): void;
    render(): React.JSX.Element;
}
export {};
