import { AfterViewInit, EventEmitter, Injector } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import EcabsElementBaseComponent from '../base/element-base'; import * as i0 from "@angular/core"; export declare class EcabsIncrementComponent extends EcabsElementBaseComponent implements ControlValueAccessor, AfterViewInit { private injector; digitsOnly: boolean; allowDecimal: boolean; allowHyphen: boolean; onblur: EventEmitter; val: string | number; get value(): string | number; set value(val: string | number); constructor(injector: Injector); ngAfterViewInit(): void; onChange: any; onTouch: any; writeValue(value: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; blurChange(e: any): void; increment(): void; decrement(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }