import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { NzI18nService } from '../../../i18n/nz-i18n.service'; import { CandyDate } from '../candy-date'; export declare class MonthTableComponent implements OnInit, OnChanges { private i18n; value: CandyDate; valueChange: EventEmitter; disabledDate: (date: Date) => boolean; prefixCls: string; panelMonths: PanelMonthData[][]; constructor(i18n: NzI18nService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; trackPanelMonth(index: number, monthData: PanelMonthData): number; private render; private makePanelMonths; private chooseMonth; } export interface PanelMonthData { disabled: boolean; content: string; month: number; title: string; classMap: object; onClick(): void; }