/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { EventEmitter } from '@angular/core'; import { NbCalendarCell, NbCalendarSize, NbCalendarSizeValues } from '../calendar-kit/model'; import { NbCalendarRange } from './calendar-range.component'; import { NbDateService } from '../calendar-kit/services/date.service'; import { NbBaseCalendarRangeCell } from './base-calendar-range-cell'; export declare class NbCalendarRangeYearCellComponent extends NbBaseCalendarRangeCell implements NbCalendarCell> { protected dateService: NbDateService; date: D; min: D; max: D; selectedValue: NbCalendarRange; size: NbCalendarSize; static ngAcceptInputType_size: NbCalendarSizeValues; select: EventEmitter; constructor(dateService: NbDateService); get inRange(): boolean; get rangeStart(): boolean; get rangeEnd(): boolean; get selected(): boolean; get today(): boolean; get disabled(): boolean; get isLarge(): boolean; yearCellClass: boolean; rangeCellClass: boolean; get year(): number; onClick(): void; protected smallerThanMin(): boolean; protected greaterThanMax(): boolean; protected yearStart(): D; protected yearEnd(): D; protected isInRange(date: D, { start, end }: NbCalendarRange): boolean; }