import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core'; export declare class MiniCalendarComponent implements OnInit { private ref; mainColor: string; secondaryColor: string; showWeek: boolean; selectedDate: any; selectedDateChange: EventEmitter<{}>; month: any; weeks: any[]; constructor(ref: ChangeDetectorRef); ngOnInit(): void; select(day: any): void; getBgColor(day: any): { 'background-color': string; 'opacity': string; }; isInWeek(day: any): any; next(): void; previous(): void; _removeTime(date: any): any; _buildWeek(date: any, month: any): any[]; _buildMonth(start: any, month: any): void; }