import type { NextFunction, Request, Response } from "express"; import type { AppConfig } from "../config/env.js"; export declare function validateBearerToken(authorization: string | undefined, expectedToken: string): boolean; export declare function isAllowedHost(hostHeader: string | undefined, extraHosts?: string[]): boolean; export declare function createHttpAuthMiddleware(config: AppConfig): (req: Request, res: Response, next: NextFunction) => void; //# sourceMappingURL=auth.d.ts.map