import { EventEmitter, OnChanges } from '@angular/core'; import { View } from '../../models/view.enum'; import { Moment } from 'moment'; import { AcCalendarOptions } from '../../models/ac-calendar-options'; import { AcCalendarLabels } from '../../models/ac-calendar-labels'; export declare class CalendarHeaderComponent implements OnChanges { private defaultLabels; date: Moment; view: typeof View; options: AcCalendarOptions; changeView: EventEmitter; Views: typeof View; dayLabel: string; weekLabel: string; monthLabel: string; yearLabel: string; constructor(defaultLabels: AcCalendarLabels); ngOnChanges(): void; seeView(view: View): void; }