/** * Authentication Middleware * API Key authentication for HTTP API */ import type { FastifyRequest, FastifyReply } from 'fastify'; import type { AppConfig } from '../../types/http.js'; /** * API Key authentication hook */ export declare function authMiddleware(request: FastifyRequest, reply: FastifyReply, config: AppConfig): Promise; //# sourceMappingURL=auth.d.ts.map