import { EventEmitter, OnInit } from '@angular/core'; import { Validators } from "@angular/forms"; import { InputDisplay } from "../enum/input-display"; import { InputNumberType } from "../enum/input-number-type"; import * as i0 from "@angular/core"; export declare class InputNumberComponent implements OnInit { protected readonly InputNumberType: typeof InputNumberType; protected readonly Validators: typeof Validators; valueChange: EventEmitter; liveValueChange: EventEmitter; label: string; labelText: string; inputId: string; minFrac: number; accept: string; hint: string; fontWeight: string | number; display: InputDisplay; placeholder: string; inputFormControl: any; customValidationsKeys: string[]; patternErrorMessage: string; maxDigits: number; onBlurChangeValue(event: any): void; onInputChangeValue(event: any): void; ngOnInit(): void; onPaste($event: ClipboardEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }