import type { Context, Next } from 'hono'; import type { HttpMethod } from '../../../types/http.js'; type ApiKeyMiddlewareOptions = { secureMethods?: HttpMethod[]; }; export declare function apiKeyMiddleware(options?: ApiKeyMiddlewareOptions): (ctx: Context, next: Next) => Promise; export {}; //# sourceMappingURL=apiKeyMiddleware.d.ts.map