import { ApplicationRef, EventEmitter } from '@angular/core'; import { ConfigService } from '../../core'; import { AuthService } from '../shared'; export declare class AuthGoogleComponent { private authService; private config; private appRef; private options; onLogin: EventEmitter; constructor(authService: AuthService, config: ConfigService, appRef: ApplicationRef); handleSignInClick(): void; handleSignOutClick(): void; private handleClientLoad(); private initClient(); private updateSigninStatus(isSignedIn); private login(token); private loadSDKGoogle(); private loadPlatform(); }