import { EventEmitter, OnChanges, OnInit } from '@angular/core'; import { LabelConfig } from '../label/label.model'; import * as i0 from "@angular/core"; export declare class DayRangeSelectorComponentConfig { startDate: Date; endDate: Date; period?: 'day' | 'week' | 'month' | 'year' | undefined; showDayOfWeek?: boolean; } export declare class DayRangeSelectorComponent implements OnInit, OnChanges { config: DayRangeSelectorComponentConfig; onDateChange: EventEmitter; private diff; startWeekDay: LabelConfig; endWeekDay: LabelConfig; constructor(); ngOnInit(): void; ngOnChanges(): void; next(): void; previous(): void; sameDay(date1: any, date2: any): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }