import { EventEmitter, OnInit } from '@angular/core'; import { DatepickerService } from './datepicker.service'; import { DateObj } from './datepicker.interface'; export declare class DatepickerComponent implements OnInit { private datepickerSvc; selected: EventEmitter<{}>; mode: string; format: string; labelText: string; items: ({ url: string; text: string; isDivider: boolean; } | { url: string; text: string; isDivider?: undefined; })[]; daysList: (any[] | any[] | any[] | any[] | any[] | any[])[]; selectedDateTime: DateObj; defaultLocaleWeekdaysShort: string[]; range: any; selectedDate: string; showCal: boolean; constructor(datepickerSvc: DatepickerService); ngOnInit(): void; isWithinRange(day: any): boolean; getSelectedClass(day: any): { 'c-datepicker__day--selected': boolean; }; setDate(day: any): void; prevMonth(): void; nextMonth(): void; clear(): void; }