import { HttpException } from "@nestjs/common";
export interface HttpErrorResponse {
    success: boolean;
    message: string;
    errorMessages: Array<{
        path: string;
        message: string;
    }>;
}
export interface ParsedHttpError {
    path: string;
    message: string;
}
export declare function parseHttpException(exception: HttpException): ParsedHttpError[];
export declare function isNestJsHttpException(exception: unknown): boolean;
export declare function getExceptionType(exception: unknown): string;
