import { ModuleWithProviders } from '@angular/core'; import { AuthServiceConfig } from 'angularx-social-login'; import { AccountServiceConfig } from './account.config'; /** * Factory method for configuring the social authentication. */ export declare function AuthServiceConfigFactory(config: AccountServiceConfig): AuthServiceConfig; export declare class AccountModule { static forRoot(config: AccountServiceConfig): ModuleWithProviders; static forChild(config: AccountServiceConfig): ModuleWithProviders; }