import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { InputBase } from '../input-base'; export declare class InputDateComponent extends InputBase implements OnInit, OnChanges { changeModel: EventEmitter<{}>; _model: any; constructor(); ngOnInit(): void; formatDate(date: any): { year: number; month: number; day: number; }; date: any; readonly classCustom: string; ngOnChanges(changes: SimpleChanges): void; }