import { EventEmitter, OnDestroy, OnInit } from '@angular/core'; import { Subscription } from 'rxjs'; import { TfNgFormService } from 'tf-ng-form'; export declare class InlinePreviewComponent implements OnInit, OnDestroy { private formService; showInlinePreview: boolean; updatedShowInlinePreview: EventEmitter; dataSubscription: Subscription; hasFields: boolean; constructor(formService: TfNgFormService); ngOnInit(): void; onToggleShowInlinePreview(): void; ngOnDestroy(): void; }