/** * @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 { NbDateService } from '../calendar-kit/services/date.service'; import { NbCalendarRange } from './calendar-range.component'; import { NbBaseCalendarRangeCell } from './base-calendar-range-cell'; export declare class NbCalendarRangeMonthCellComponent extends NbBaseCalendarRangeCell implements NbCalendarCell> { protected dateService: NbDateService; get month(): string; date: D; visibleDate: D; selectedValue: NbCalendarRange; min: D; max: D; size: NbCalendarSize; static ngAcceptInputType_size: NbCalendarSizeValues; select: EventEmitter; monthCellClass: boolean; rangeCellClass: boolean; get selected(): boolean; get inRange(): boolean; get rangeStart(): boolean; get rangeEnd(): boolean; get today(): boolean; get disabled(): boolean; get isLarge(): boolean; onClick(): void; constructor(dateService: NbDateService); protected smallerThanMin(): boolean; protected greaterThanMax(): boolean; protected monthStart(): D; protected monthEnd(): D; protected isInRage(date: D, range: NbCalendarRange): boolean; }