import { UnauthorizedException } from '@nestjs/common'; import { ErrorDetail, IAbstractError } from './abstract.error'; export declare class UnauthorizedError extends UnauthorizedException implements IAbstractError { private readonly pDetails; constructor(details?: ErrorDetail[]); get details(): ErrorDetail[]; }