import { EventEmitter } from '@angular/core'; import { CalendarMonth } from '../calendar.model'; export declare class MonthPickerComponent { month: CalendarMonth; color: string; select: EventEmitter; _thisMonth: Date; _monthFormat: string[]; MONTH_FORMAT: string; set monthFormat(value: string[]); get monthFormat(): string[]; constructor(); _onSelect(month: number): void; getDate(month: number): Date; }