import { OnInit, EventEmitter } from '@angular/core'; import { LocaleService } from "../services/LocaleService"; export declare class Calendar implements OnInit { private localeService; dateValue: any; dateFormat: string; showIcon: boolean; showTime: boolean; minDate: Date; maxDate: Date; readonlyInput: boolean; utc: boolean; onFocus: EventEmitter; onBlur: EventEmitter; dateValueChange: EventEmitter; static templateGuid: string; locale: any; constructor(localeService: LocaleService); ngOnInit(): void; onModelChange(modelValue: any): void; focus: (event: any) => void; blur: (event: any) => void; }