import { OnInit, EventEmitter } from '@angular/core'; import { event } from '../data.model'; import { GoogleCalendarAPIService } from './google-calendar-api.service'; export declare class GoogleCalendarAPIComponent implements OnInit { private calanderSVC; events: event; cssClass: string; label: string; response: EventEmitter; sentInitOverlay: boolean; loginstatus: boolean; apiKey: string; clientId: string; constructor(calanderSVC: GoogleCalendarAPIService); ngOnInit(): void; closePopup(): void; check(status: any): void; createCalanderEvent(): void; initGoogle(): void; initClient(): void; handleClientLoad(): void; updateSigninStatus(isSignedIn: any): void; /** * Sign in the user upon button click. */ handleAuthClick(): void; createEvent(): void; onPopup(status: any): void; }