import { OnInit } from '@angular/core'; import { BaseValueComponent } from '../../base-value.component'; import { ReadTextValueAsHtml } from '@dasch-swiss/dsp-js'; import { FormControl, FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs'; export declare class TextValueAsHtmlComponent extends BaseValueComponent implements OnInit { displayValue?: ReadTextValueAsHtml; valueFormControl: FormControl; commentFormControl: FormControl; form: FormGroup; valueChangesSubscription: Subscription; customValidators: any[]; commentLabel: string; htmlFromKnora: string; comment: string; constructor(); ngOnInit(): void; getInitValue(): string; getNewValue(): false; getUpdatedValue(): false; }