import { Request, Response, NextFunction } from "express"; /** * Extracts the API key from the request path or header. * Calls next() or returns 401 if no API key is present. **/ export declare const apiKeyMiddleware: (req: Request, res: Response, next: NextFunction) => Response> | undefined;