import { GenericError } from "./generic"; export declare class HTTPError extends GenericError { status: number; constructor(message: string, httpStatus: number, code?: string, type?: string); }