import { EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { CandyDate } from '../time/candy-date'; import { NzSafeAny } from '../types/any'; import { FunctionProp } from '../types/common-wrap'; import { isNonEmptyString, isTemplateRef } from '../util/check'; import { NzCalendarI18nInterface } from '../i18n/nz-i18n.interface'; import { DateBodyRow, DateCell } from './interface'; export declare abstract class AbstractTable implements OnInit, OnChanges { isTemplateRef: typeof isTemplateRef; isNonEmptyString: typeof isNonEmptyString; headRow: DateCell[]; bodyRows: DateBodyRow[]; MAX_ROW: number; MAX_COL: number; prefixCls: string; value: CandyDate; locale: NzCalendarI18nInterface; activeDate: CandyDate; showWeek: boolean; selectedValue: CandyDate[]; hoverValue: CandyDate[]; disabledDate?: (d: Date) => boolean; cellRender?: string | TemplateRef | FunctionProp | string>; fullCellRender?: string | TemplateRef | FunctionProp | string>; readonly valueChange: EventEmitter; readonly cellHover: EventEmitter; protected render(): void; trackByBodyRow(_index: number, item: DateBodyRow): NzSafeAny; trackByBodyColumn(_index: number, item: DateCell): NzSafeAny; hasRangeValue(): boolean; getClassMap(cell: DateCell): { [key: string]: boolean; }; abstract makeHeadRow(): DateCell[]; abstract makeBodyRows(): DateBodyRow[]; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private isDateRealChange; private isSameDate; }