import React from 'react'; import { IDictionary } from '@mjcloud/types'; export interface IErrorInfo extends IDictionary { name: string; title: string; message: string; } export declare function hideScreen(): void; export declare function handleException(ex: IErrorInfo): { error: IErrorInfo; }; export declare const ErrorException: React.FC<{ error: IErrorInfo; }>; export declare const Screen: React.FC<{}>;