import * as React from 'react'; export interface IErrorDialogProps { title?: string; subText?: string; } export interface IErrorDialogState { showDialog: boolean; } /** * Error dialog for the workbench. */ export default class ErrorDialog extends React.Component { constructor(props: IErrorDialogProps); render(): React.ReactElement; open: () => void; private _close; } //# sourceMappingURL=ErrorDialog.d.ts.map