import { AfterViewInit, OnInit } from '@angular/core'; import { ValidatorFn } from '@angular/forms'; import { InputType } from '../../../szorba-types'; import { MinMaxFormInterface } from '../../../validators/utils/min-max-validator.util'; import { SzHtmlFormInputComponent } from '../sz-html-form-input/sz-html-form-input.component'; import * as i0 from "@angular/core"; export declare class SzHtmlFormInputNumberComponent extends SzHtmlFormInputComponent implements MinMaxFormInterface, OnInit, AfterViewInit { type: InputType; min: number; max: number; step: number; classSzHtmlFormInputNumber: boolean; minValidator: number; maxValidator: number; protected _value: number; get value(): number; set value(val: number); ngOnInit(): void; ngAfterViewInit(): void; protected setValueThroughFormControl(val: number): void; protected getAndSetupAllValidatorFns(): ValidatorFn[]; protected inputEvent(e: InputEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }