import { RuntimeException } from '../runtime.exception'; import { HttpStatus } from '../../enum'; export declare class HttpException extends RuntimeException { readonly message: any; constructor(response: object); static createBody(statusCode: HttpStatus | number, error: string, message?: any): any; toString(): string; }