/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core'; import { CandyDate } from 'ng-zorro-antd/core/time'; import { FunctionProp } from 'ng-zorro-antd/core/types'; import { NzCalendarI18nInterface } from 'ng-zorro-antd/i18n'; import { DisabledDateFn, PanelMode, SupportTimeOptions } from './standard-types'; export declare class InnerPopupComponent implements OnChanges { activeDate: CandyDate; endPanelMode: PanelMode; panelMode: PanelMode; showWeek: boolean; locale: NzCalendarI18nInterface; showTimePicker: boolean; timeOptions: SupportTimeOptions; enablePrev: boolean; enableNext: boolean; disabledDate: DisabledDateFn; dateRender: FunctionProp | string>; selectedValue: CandyDate[]; hoverValue: CandyDate[]; value: CandyDate; readonly panelModeChange: EventEmitter; readonly headerChange: EventEmitter; readonly selectDate: EventEmitter; readonly selectTime: EventEmitter; readonly dayHover: EventEmitter; prefixCls: string; onSelectTime(date: Date): void; onSelectDate(date: CandyDate | Date): void; onChooseMonth(value: CandyDate): void; onChooseYear(value: CandyDate): void; onChooseDecade(value: CandyDate): void; ngOnChanges(changes: SimpleChanges): void; }