import { Request, Response, Strategy } from "../common"; import type { NextFunction } from 'express'; export declare const AuthMiddleware: (strategy: Strategy) => (req: Request, res: Response, next: NextFunction) => Promise;