import { EventEmitter, OnInit } from "@angular/core"; import { LocaleService } from "@seniorsistemas/angular-components"; export declare class InputDateModelComponent implements OnInit { private localeService; name: string; disabled?: boolean; withoutDay: boolean; unmask: boolean; style: boolean; styleClass: string; onBlurGetMoment: EventEmitter; modelChange: EventEmitter; private _date; private locale; private format; private _model; mask: any; constructor(localeService: LocaleService); ngOnInit(): void; formatMask(loc: any): any; getFormat(): any; readonly placeholder: any; onBlur(): void; model: any; }