import { AfterViewInit, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { InputDateSizesTypes } from './input-date.enum'; import { DateModel, TimeModel } from './helpers/validate-value-models'; import { TimezoneType } from './enum/timezone'; import * as i0 from "@angular/core"; export declare type InputDateValueTypes = string; export declare class LibInputDateComponent implements ControlValueAccessor, OnChanges, AfterViewInit { dt: any; value: any; dateModel: DateModel; timeModel: TimeModel; innerInvalid: boolean; innerInvalidMessage: string; size: InputDateSizesTypes; customClasses: string; dateLabel: string; timeLabel: string; datePlaceholder: string; timePlaceholder: string; disabled: boolean; readonly: boolean; required: boolean; timepicker: boolean; minDate: string; maxDate: string; timezone: TimezoneType; container: string; invalid: boolean; invalidMessage: string | string[]; checkInvalid: true | false | null; dateInput: ElementRef; timeInput: ElementRef; changed: EventEmitter; constructor(); ngAfterViewInit(): void; ngOnChanges(changes: SimpleChanges): void; get getClasses(): string; private get isValidModels(); get isViewCleanIcon(): boolean; get checkValidClasses(): string; clickToIconCalendar(): void; clickToIconClear(): void; private updateValueModel; private dateFormattingOutput; private invalidMessageOn; private invalidMessageOff; updateDateValue(dateInput: HTMLInputElement): void; updateTimeValue(timeInput: HTMLInputElement): void; clickToInput(input: HTMLInputElement): void; private checkingInvalid; writeValue(outsideValue: InputDateValueTypes): void; private onChange; private onTouched; registerOnChange(fn: any): void; registerOnTouched(fn: () => {}): void; setDisabledState(isDisabled: boolean): void; updateValue(insideValue: InputDateValueTypes): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }