import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { FormBuilder, FormControl, FormGroup } from '@angular/forms'; import { CreateIntValue, ReadIntValue, UpdateIntValue } from '@dasch-swiss/dsp-js'; import { Subscription } from 'rxjs'; import { BaseValueComponent } from '../base-value.component'; import { ValueErrorStateMatcher } from '../value-error-state-matcher'; export declare class IntValueComponent extends BaseValueComponent implements OnInit, OnChanges, OnDestroy { private _fb; displayValue?: ReadIntValue; valueFormControl: FormControl; commentFormControl: FormControl; form: FormGroup; matcher: ValueErrorStateMatcher; valueChangesSubscription: Subscription; customValidators: import("@angular/forms").ValidatorFn[]; constructor(_fb: FormBuilder); getInitValue(): number | null; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; getNewValue(): CreateIntValue | false; getUpdatedValue(): UpdateIntValue | false; }