import { Router, Request, Response, NextFunction } from "express";
import { OAuthRouterConfig } from "./types";
export declare function createOAuthRouter(config: OAuthRouterConfig): Router;
export declare function createOAuthMiddleware(provider: any): (req: Request, res: Response, next: NextFunction) => Promise<void>;
