/********** Angular **********/ import { OnDestroy, OnInit } from '@angular/core'; /********** Ionic **********/ /********** Plugin **********/ import { NumericTextBoxComponent } from '@progress/kendo-angular-inputs'; /********** Component & Service **********/ import { InputFieldBase } from '../components/inputfieldbase.component'; import { ZComponentService } from '../services/zcomponent.service'; import { ZComponent } from "mmhglobal-zcore"; import * as i0 from "@angular/core"; export declare class ZnumericComponent extends InputFieldBase implements ZComponent, OnInit, OnDestroy { componentService: ZComponentService; numeric: NumericTextBoxComponent; inputMode: string; minValue: number; maxValue: number; private minValidator; private maxValidator; constructor(componentService: ZComponentService); ngOnInit(): void; ngOnDestroy(): void; ngAfterViewInit(): void; setMinValue(newValue: number): void; setMaxValue(newValue: number): void; focus(): boolean; private setInitMinAndMaxValue; private addMinAndMaxValidator; private removeMinAndMaxValidator; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }