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;
    dateValueChange: EventEmitter<any>;
    static templateGuid: string;
    locale: any;
    constructor(localeService: LocaleService);
    ngOnInit(): void;
    onModelChange(modelValue: any): void;
}
