import { OnInit } from '@angular/core'; import { FormGroup, FormControl, ValidatorFn } from '@angular/forms'; import { AbstractFormControl } from '../abstract-form-control'; import { DatePipe } from '@angular/common'; import { PopupPlacement } from '../../popup/popup.component'; export declare class DatepickerComponent extends AbstractFormControl implements OnInit { private datePipe; formModel: FormGroup; id?: string; popupPlacement: PopupPlacement; /** Days of the week that cannot be selected */ /** Specific dates that cannot be selected */ private dateFormat; private labelPatched; private modelPatched; static createFormGroup(model: FormControl, validators?: ValidatorFn[]): FormGroup; constructor(datePipe: DatePipe); ngOnInit(): void; private modelValueChanged; private labelValueChanged; private updateValidity; }