import { SocialAuthConfigMap } from './social-auth-config-map'; import { NgxSocialAuthProviderType } from '../social-auth-provider-type.enum'; /** * Class that allows to create specific auth provider * * @author Dmytro Parfenov */ export declare class NgxSocialAuthProvider { readonly type: K; readonly config: SocialAuthConfigMap[K]; constructor(type: K, config: SocialAuthConfigMap[K]); }