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