import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export declare class DatepickerTimerBoxComponent implements OnInit, OnDestroy { showDivider: boolean; upBtnAriaLabel: string; upBtnDisabled: boolean; downBtnAriaLabel: string; downBtnDisabled: boolean; /** * Value would be displayed in the box * If it is null, the box would display [value] * */ boxValue?: number; value?: number; min?: number; max?: number; step: number; inputLabel: string; valueChange: EventEmitter; inputChange: EventEmitter; private inputStream; private inputStreamSub; get displayValue(): number; get datepickerDTTimerBoxClass(): boolean; constructor(); ngOnInit(): void; ngOnDestroy(): void; upBtnClicked(): void; downBtnClicked(): void; handleInputChange(val: string): void; private updateValue; private updateValueViaInput; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }