import { UnauthorizedException } from '@nestjs/common';
import { UnauthorizedResult } from '../result/unauthorized.result';
export declare class AppUnauthorizedException extends UnauthorizedException {
    constructor(message: string);
    getResponse(): UnauthorizedResult;
}
