import type { FastifyReply, FastifyRequest } from '../../../../../../third-party/fastify.js';
export type HookHandlerName = 'onRequest' | 'preHandler' | 'preValidation' | 'preSerialization';
export interface HookHandler {
    name: HookHandlerName;
    execute: (request: FastifyRequest, reply: FastifyReply) => Promise<void>;
}
//# sourceMappingURL=hook-handler.d.ts.map