import type { ObjectOf } from "../Types"; import HttpException from "./HttpException"; declare class NotFoundHttpException extends HttpException { constructor(message?: string, previous?: Error | null, headers?: ObjectOf); } export default NotFoundHttpException;