import { OnChanges, OnDestroy, OnInit } from '@angular/core'; import { Moment } from 'moment'; import { AcCalendarEvent } from '../../models/ac-calendar-event'; import { AcCalendarLabels } from '../../models/ac-calendar-labels'; import { AcCalendarOptions } from '../../models/ac-calendar-options'; import { StoreService } from '../../services/store.service'; import { Subject } from 'rxjs'; export declare class CalendarViewDaySlideComponent implements OnInit, OnChanges, OnDestroy { private defaultLabels; private storeService; private moment; day: Moment; active: boolean; options: AcCalendarOptions; hours: string[]; allDayEvents: AcCalendarEvent[]; hourEvents: AcCalendarEvent[]; eventList: AcCalendarEvent[]; isAllDaysShown: boolean; allDay: string; unsubcribe$: Subject; constructor(defaultLabels: AcCalendarLabels, storeService: StoreService, moment: any); ngOnInit(): void; ngOnChanges(): void; ngOnDestroy(): void; setEvents(): void; showAllDays(): void; hideAllDays(): void; }