import { OnInit } from '@angular/core'; import { IDay } from '../../models/interfaces'; import * as i0 from "@angular/core"; export declare class CalendarDayComponent implements OnInit { day: IDay; disabled: boolean; /** Is it at the beginning of the week */ inWeekStart: boolean; /** Is it at the end of the week */ inWeekEnd: boolean; selected: boolean; /** Is it at the beginning of the range */ inRangeMiddle: boolean; /** Is it in the middle of the range */ inRangeStart: boolean; /** Is at the end of the range */ inRangeEnd: boolean; private readonly calendarService; private readonly optionsService; private readonly elementRef; private readonly renderer; ngOnInit(): void; /** Getting the `grid-column-start` property depending on the day of the week */ private getGridColumnStart; /** Setting the `grid-column-start` property depending on the day of the week */ setGridColumnStart(): void; /** Select a day */ select(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }