/** * 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, NzDateMode, NzPanelChangeType, RangePartType, SupportTimeOptions } from './standard-types'; import * as i0 from "@angular/core"; export declare class InnerPopupComponent implements OnChanges { 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; format?: string; readonly panelChange: EventEmitter; readonly headerChange: EventEmitter; readonly selectDate: EventEmitter; readonly selectTime: EventEmitter; readonly cellHover: EventEmitter; prefixCls: string; /** * 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 | Date): void; onChooseMonth(value: CandyDate): void; onChooseQuarter(value: CandyDate): void; onChooseYear(value: CandyDate): void; onChooseDecade(value: CandyDate): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_showWeek: unknown; static ngAcceptInputType_showTimePicker: unknown; }