import { OnInit, ElementRef } from '@angular/core'; import { TimePickerService, UnitType } from './time-picker.service'; export declare class TimeSelectorComponent implements OnInit { private timePickerService; private regNumOnly; /** @prop Set the type for the Input element | 'text' */ type: string; /** @prop Set the unit of time | '' */ unit: UnitType; /** @prop Set the value of the Input element | '' */ value: string; selectInput: ElementRef; constructor(timePickerService: TimePickerService); ngOnInit(): void; updateText: () => void; updateValue: () => boolean; updatePre: (v: any) => void; onUpClick: () => void; onDownClick: () => void; onChange: (e: any) => boolean; onWheel: (e: any) => void; onBlur: () => void; onKeydown: (e: any) => void; }