import { FormMessageService } from '../../form-message.service';
import { IExceptionStrategy, ServerException } from '../types';
import { ExceptionStrategy } from './exception-strategy';

/**
 * 错误级别异常处理
 */
export declare class ErrorExceptionStrategy extends ExceptionStrategy implements IExceptionStrategy {
    messagerService: FormMessageService;
    constructor(messagerService: FormMessageService);
    handleException(error: ServerException): void;
    private handleErrorLevel;
    /**
     * 在控制台中显示错误信息
     */
    private displayError;
}
