import { OAuthImplement } from "./oauth.implement";
import { OAuthModuleOptions } from "./oauth.interfaces";
export declare class OAuthService {
private readonly options;
private oauthMap;
constructor(options: OAuthModuleOptions);
with(provider: string): OAuthImplement;
}