import { EventEmitter, OnChanges, OnInit } from '@angular/core'; import { Moment } from 'moment'; import { ChangeViewEvent } from '../../models/change-view-event'; import { AcCalendarOptions } from '../../models/ac-calendar-options'; import { AcCalendarLabels } from '../../models/ac-calendar-labels'; import { Day } from '../../models/day'; export declare class CalendarViewWeekSlideComponent implements OnInit, OnChanges { private moment; private defaultLabels; week: Moment; active: boolean; options: AcCalendarOptions; changeView: EventEmitter; hours: string[]; days: Day[]; allDay: string; constructor(moment: any, defaultLabels: AcCalendarLabels); ngOnInit(): void; ngOnChanges(): void; goToDate(date: Moment): void; }