import { EventEmitter } from "@angular/core"; import { Observable } from "rxjs/Observable"; import { Store } from "@ngrx/store"; import { AuthenticationConfigurationService } from "../../services/authentication-configuration.service"; import { FeatureState } from "../../reducers"; export declare class SigninContainerComponent { private configurationService; private store; formId$: Observable; signedIn$: EventEmitter; constructor(configurationService: AuthenticationConfigurationService, store: Store); signIn(formValue: any): void; }