import { OnDestroy, OnInit } from "@angular/core"; import { NsEmpWebExpData } from "../../../models/emp-web-exp.model"; import { ApiService } from "../../../services/api.service"; import { CommuteService } from "../../../services/commute.service"; import { LoaderService } from "../../../services/loader.service"; import { ConfigurationService } from "../../../services/configuration.service"; import { ToastService } from "mis-crystal-design-system/toast"; import { BookingDataService } from "../../../services/booking-data.service"; import { DropdownItem } from "mis-crystal-design-system/dropdown"; import { DrawerService } from "mis-design-system/drawer"; import { EmpUserService } from "../../../services/emp-user.service"; import { TranslateService } from "@ngx-translate/core"; export declare class ParkingComponent implements OnInit, OnDestroy { commuteSvc: CommuteService; private loader; private configSvc; private toasts; private bookingSvc; private apiService; private _drawerSvc; private _userServ; private _translateSvc; constructor(commuteSvc: CommuteService, loader: LoaderService, configSvc: ConfigurationService, toasts: ToastService, bookingSvc: BookingDataService, apiService: ApiService, _drawerSvc: DrawerService, _userServ: EmpUserService, _translateSvc: TranslateService); readonly Assets: { IMAGES: { EMPTY_HERO: string; MOBILE_EMPTY_HERO: string; NO_UPCOMING: string; HERO_BG: string; EMPTY_PLATE: string; PARKING_BG: string; CERTIFICATE: string; BOOKING_SUCCESS: string; HISTORY_EMPTY: string; NO_PARKING_SLOTS: string; }; ICONS: { MORE: string; CANCELLED: string; CANCEL_INFO: string; DOWN_ARROW: string; HERO_RIGHT: string; SEAT: string; CLOSE: string; CALENDAR: string; CAB: string; CAB_DARK: string; TICK_GREEN: string; SUCCESS_TICK: string; ARROW: string; EDIT: string; EDIT_DARK: string; CANCEL: string; IC_RADIO: string; IC_RADIO_ACTIVE: string; IC_ADD: string; IC_CLOSE: string; IC_WFO: string; IC_WFH: string; DESK: string; DESK_BULE: string; DESK_GREY: string; CHEVRON_RIGHT: string; CANCEL_BIN: string; WFH: string; WFO_CONVERT: string; WFH_CONVERT: string; WFO_CONVERT_DARK: string; WFH_CONVERT_DARK: string; QUICK_WFH: string; QUICK_WFO: string; CLOCK: string; PARKING: string; PARKING_ACTIVE: string; TRANSPORT: string; TRANSPORT_ACTIVE: string; TRANSPORT_UNAVAILABILTY: string; TRANSPORT_AVAILABILTY: string; INFO: string; RED_INFO: string; CHOICE_CHIP: string; MEAL: string; MEAL_DARK: string; MEAL_CHECK: string; AVATAR: string; PARKING_MODULE: string; APPROVAL_STATUS: string; SUCCESS_RECURRENCE: string; FAILED_BOOKINGS: string; MORE_STATUS: string; LANGUAGE: string; SHUTTLE_ACTIVE: string; SHUTTLE: string; SHUTTLE_DEACTIVE: string; SHUTTLE_DARK: string; SHUTTLE_CROSS: string; ACTION_INFO: string; TRANSPORT_BIKE: string; TRANSPORT_CAR: string; WFO_HEADER: string; WFH_HEADER: string; CROSS_MODAL: string; LIST: string; NOTE: string; CAR_BLACK: string; CAR_SELECTED: string; BIKE_BLACK: string; BIKE_SELECTED: string; PARKING_HEADER: string; PARKING_ACTION: string; EMPTY_STAR: string; SELECTED_STAR: string; STAR: string; HORRIBLE: string; AVERAGE: string; BAD: string; EXCELLENT: string; GOOD: string; MEAL_EMPTY_FEEDBACK: string; }; }; premises: NsEmpWebExpData.IParkingPremise[]; premiseZones: NsEmpWebExpData.IParkingPremise[]; vehicles: NsEmpWebExpData.IParkingPremise[]; zones: NsEmpWebExpData.IParkingPremise[]; levels: NsEmpWebExpData.IParkingPremise[]; configs: import("rxjs").Observable; parkingForm: any; private endObs; enableParkingFloorPlan: boolean; enableWaitlistBooking: boolean; enableJoinAllWaitlist: boolean; noAvaliability: boolean; currLevel: NsEmpWebExpData.IParkingPremise; waitlist: Set; allLevelChecked: boolean; oldList: Set; parkingScheduleCutoff: number; bulkBookingParkingCutoff: boolean; maxDate: any; formattedMaxDate: any; autoSlotAllocate: boolean; vehicleCreationDuringParkingEnabled: boolean; vehicleCreationDuringParkingFor: Array; vehcleInfo: NsEmpWebExpData.IVehicleDetails[]; vehicleDetailsInfo: DropdownItem[]; selectedVehicleDetails: DropdownItem; showLoader: boolean; isHybridParking: string; userInfo: any; ngOnInit(): void; fetchParkingDetails(): void; fetchVehicleDetails(): void; setVehicleDetails(event: any): void; ngOnDestroy(): void; setSlot(data: NsEmpWebExpData.IParkingPremise): void; private listenFormChanges; private groupBy; private buildForm; private setZones; private setLevels; setPremise(ctrl: string, value: NsEmpWebExpData.IParkingPremise, internal?: boolean): void; private setLevelV2; sendWaitlist(commute?: NsEmpWebExpData.ICommuteOption): void; joinWaitlist(event: any): void; joinAllWaitlist(event: any): void; openVehicleForm(): void; }