import { FormService } from '../form.service'; import { OnInit, ElementRef } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { InputBase } from '../input-base/input-base.component'; export declare class NumberComponent extends InputBase implements OnInit { class: string; fg: FormGroup; placeholder: string; field: string; label: string; floatingLabel: boolean; leftIcon: string; rightIcon: string; disabled: boolean; value: number; alt: boolean; decimal: boolean; currency: boolean; percent: boolean; prefix: string; suffix: string; decimalPlaces: number; required: boolean; min: number; max: number; numberMask: (rawValue: any) => string[]; constructor(el: ElementRef, formService: FormService); addValidators(): void; ngOnInit(): void; ngOnDestroy(): void; }