import { OnInit } from '@angular/core'; import { AbstractDynamicFormFieldDirective } from './abstract-dynamic-form-field.directive'; import { FormFieldType } from '../model/FormFieldType'; export declare class DffDateAndTimeComponent extends AbstractDynamicFormFieldDirective implements OnInit { currentDate: Date; year: boolean; month: boolean; day: boolean; time: boolean; size: number; monthTouched: boolean; format: string; ngOnInit(): void; validate(value: string): string[]; writeValue(value: string): void; setComponentsOfDate(value: FormFieldType): void; changeTouched(): void; updateValue(): void; }