import { QueryList } from '@angular/core'; import { IDay, IMonth, IRangeDayIds } from '../../models/interfaces'; import { DayComponent } from '../day/day.component'; import * as i0 from "@angular/core"; export declare class MonthComponent { readonly dayComponents: QueryList; month: IMonth; /** * To update the states of days, it is the parent ChangeDetectorRef that is used * due to the specifics of HostBinding, described here https://github.com/angular/angular/issues/22560 */ private readonly cdr; /** Update selection status for one day */ updateDaySelection(selectedDayId: string): void; /** Update in range status for all days */ updateDayRangeSelection(data: IRangeDayIds): void; trackByDayId(index: number, day: IDay): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }