import { OnDestroy, OnInit } from '@angular/core'; import { ValidatorFn } from '@angular/forms'; import { RangePickerComponent } from '../base/range-picker-base.component'; import * as i0 from "@angular/core"; export declare abstract class RangePickerToComponent extends RangePickerComponent implements OnInit, OnDestroy { private _rangePickerStore; constructor(); ngOnInit(): void; ngOnDestroy(): void; registerPicker(): void; writeValue(value: any): void; cleared(event?: any): void; /** * Set value which was selected in dialog * @param value */ updateValue(value: Date): void; protected _tzChanged(originDate: Date | null): void; /** The form control validator for whether the input parses. */ protected _parseValidator: ValidatorFn; protected _processInputDate(date: Date | null): Date | null; protected _subscribeToPickerRefUpdates(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }