/** * @author twieder */ import { OnInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { TerraSelectBoxValueInterface } from '../../select-box/data/terra-select-box.interface'; import { L10nLocale } from 'angular-l10n'; import * as i0 from "@angular/core"; /** @deprecated since v5. Please use mat-input of type time instead. */ export declare class TerraTimePickerComponent implements OnInit, ControlValueAccessor { _locale: L10nLocale; /** * @description If true, the input will be disabled. Default false. * */ inputIsDisabled: boolean; valuesHours: Array; valuesMinutes: Array; private _value; private _onTouchedCallback; private _onChangeCallback; constructor(_locale: L10nLocale); ngOnInit(): void; createTimeValues(): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; writeValue(value: Date): void; get _minutes(): number; set _minutes(minutes: number); get _hours(): number; set _hours(minutes: number); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }