/** * 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 '@ui-vts-kit/ng-vts/core/time'; import { FunctionProp } from '@ui-vts-kit/ng-vts/core/types'; import { VtsCalendarI18nInterface } from '@ui-vts-kit/ng-vts/i18n'; import { DisabledDateFn, VtsDateMode, RangePartType, SupportTimeOptions } from './standard-types'; import * as i0 from "@angular/core"; export declare class InnerPopupComponent implements OnChanges { activeDate: CandyDate; endPanelMode: VtsDateMode; panelMode: VtsDateMode; showWeek: boolean; locale: VtsCalendarI18nInterface; showTimePicker: boolean; timeOptions: SupportTimeOptions | null; disabledDate?: DisabledDateFn; dateRender?: string | TemplateRef | FunctionProp | string>; selectedValue: CandyDate[]; hoverValue: CandyDate[]; value: CandyDate; partType: RangePartType; showLunarDate: boolean; readonly panelModeChange: 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: VtsDateMode): 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; }