import { ElementRef, EventEmitter, OnInit, OnDestroy } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { LocaleService } from '@seniorsistemas/angular-components'; import * as _moment from 'moment'; export declare class InputDateComponent implements OnInit, OnDestroy { private localeService; _inputDateElement: ElementRef; form: FormGroup; name: string; disabled?: boolean; unmask: boolean; inputId: string; withoutDay: boolean; readonly: boolean; onBlurGetMoment: EventEmitter; private ngUnsubscribe; private _date; private locale; private format; mask: any; constructor(localeService: LocaleService); ngOnInit(): void; ngOnDestroy(): void; formatMask(loc: any): any; setFormat(): any; readonly placeholder: any; onBlur(event: any): void; readonly model: _moment.Moment; readonly inputDateElement: ElementRef; }