import type { FastifyPluginCallback, FastifyReply } from 'fastify'; import type { HTTPException } from '../core/httpException.js'; export declare function httpExceptionToResponse(exception: HTTPException, reply: FastifyReply): void; export interface FastifyHttpExceptionsOptions { logUnhandled?: boolean; } export declare const fastifyHttpExceptions: FastifyPluginCallback;