/** @format */ import { AfterViewInit, OnDestroy, OnInit } from "@angular/core"; import { BookingDataService } from "../../services/booking-data.service"; import { ConfigurationService } from "../../services/configuration.service"; import { EmpUserService } from "../../services/emp-user.service"; import { HomeDataService } from "../../services/home-data.service"; import { PreferenceDataService } from "../../services/preference-data.service"; import { CookieService } from "../../services/cookie.service"; import { Subscription } from "rxjs"; export declare class HomeComponent implements OnInit, AfterViewInit, OnDestroy { private _cookieService; private user; configSvc: ConfigurationService; private homeSvc; private preferenceSvc; private bookingSvc; empGuid: string; buid: string; showTeamCalendar: boolean; private _zedaEnabled; empInfoSubscription$: Subscription; constructor(_cookieService: CookieService, user: EmpUserService, configSvc: ConfigurationService, homeSvc: HomeDataService, preferenceSvc: PreferenceDataService, bookingSvc: BookingDataService); ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; openTeamCalendar(): void; closeTeamCalendar(): void; }