import { IncomingMessage, ServerResponse } from 'http'; import { Request, Response, NextFunction } from 'express'; export declare const createAuthMiddleware: (authToken: string) => (req: IncomingMessage, res: ServerResponse, next: () => void) => void; export declare const createExpressAuthMiddleware: (authToken: string) => (req: Request, res: Response, next: NextFunction) => void | Response>; //# sourceMappingURL=auth.d.ts.map