import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { CandyDate } from '../time/candy-date'; import { NzCalendarI18nInterface } from '../i18n/nz-i18n.interface'; import { NzDateMode } from '../standard-types'; import { PanelSelector } from './interface'; export declare abstract class AbstractPanelHeader implements OnInit, OnChanges { prefixCls: string; selectors: PanelSelector[]; value: CandyDate; locale: NzCalendarI18nInterface; showSuperPreBtn: boolean; showSuperNextBtn: boolean; showPreBtn: boolean; showNextBtn: boolean; readonly panelModeChange: EventEmitter; readonly valueChange: EventEmitter; abstract getSelectors(): PanelSelector[]; superPreviousTitle(): string; previousTitle(): string; superNextTitle(): string; nextTitle(): string; superPrevious(): void; superNext(): void; previous(): void; next(): void; changeValue(value: CandyDate): void; changeMode(mode: NzDateMode): void; private render; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }