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