/** * 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, CandyDateFac } from 'ng-met-antd/core'; import { FunctionProp } from 'ng-zorro-antd/core/types'; import { NzCalendarI18nInterface } from 'ng-met-antd/i18n'; import { DisabledDateFn, NzDateMode, RangePartType, SupportTimeOptions } from './standard-types'; import * as i0 from "@angular/core"; export declare class InnerPopupComponent implements OnChanges { private candyDate; activeDate: CandyDate; endPanelMode: NzDateMode; panelMode: NzDateMode; showWeek: boolean; locale: NzCalendarI18nInterface; showTimePicker: boolean; timeOptions: SupportTimeOptions | null; disabledDate?: DisabledDateFn; dateRender?: string | TemplateRef | FunctionProp | string>; selectedValue: CandyDate[]; hoverValue: CandyDate[]; value: CandyDate; partType: RangePartType; readonly panelModeChange: EventEmitter; readonly headerChange: EventEmitter>; readonly selectDate: EventEmitter>; readonly selectTime: EventEmitter>; readonly cellHover: EventEmitter>; prefixCls: string; constructor(candyDate: CandyDateFac); /** * Hide "next" arrow in left panel, * hide "prev" arrow in right panel * * @param direction * @param panelMode */ enablePrevNext(direction: 'prev' | 'next', panelMode: NzDateMode): boolean; onSelectTime(date: Date): void; onSelectDate(date: CandyDate): void; onChooseMonth(value: CandyDate): void; onChooseYear(value: CandyDate): void; onChooseDecade(value: CandyDate): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }