/// import * as React from "react"; import style from "./style/error-center.css"; export declare type ErrorCenterStyle = Partial; export interface ErrorCenterProps { areErrorsVisible?: boolean; classNames?: ErrorCenterStyle; errors?: string[]; numberDisplayed?: number; source?: { onerror: (e: string) => void; }; } export declare class ErrorCenter extends React.Component { areErrorsVisible: boolean; errors: string[]; componentWillMount(): void; toggleVisible(): void; renderErrors(): JSX.Element; render(): JSX.Element | null; }