import { OnInit, ViewContainerRef } from '@angular/core'; import { DatePickerService } from './date-picker.service'; export declare class DatePickerDayComponent implements OnInit { private datePickerService; private viewContainerRef; /** @prop Required day that the DatePickerDay displays */ day: any; /** @prop Required month that the DatePickerDay displays */ month: any; isDisable: boolean; isSelected: boolean; isFocus: boolean; isToday: boolean; isOutsideMonth: boolean; isInRange: boolean; isUnselectable: boolean; isStartDay: boolean; isEndDay: boolean; isHovered: boolean; isInRangeSelected: boolean; isNormalView: boolean; specialRangeClass: string; displayDay: any; constructor(datePickerService: DatePickerService, viewContainerRef: ViewContainerRef); ngOnInit(): void; onClick: () => void; onHover: () => void; private checkState; }