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

export declare class UnauthorizedExceptionStrategy extends ExceptionStrategy implements IExceptionStrategy {
    messagerService: FormMessageService;
    constructor(messagerService: FormMessageService);
    handleException(error: UnAuthorizedException): void;
}
