import { HttpException } from '@nestjs/common';
interface ErrorDetail {
    field?: string;
    errors: string[];
}
export declare class BaseHttpException extends HttpException {
    constructor(success: boolean | undefined, statusCode: number, error: string, messages: ErrorDetail[], path: string);
}
export {};
