import { OnDestroy, OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs'; import { FormEditorConfigService, SelectableFieldItemModel } from '../../form-editor-config.service'; import { TfNgFormEditorService } from '../../tf-ng-form-editor.service'; import { FieldItemModel } from '../../to-share/field-item-model.interface'; import { FieldItemComponentOptionsModel } from '../../to-share/field-item-component-options-model.interface'; export declare class FieldDetailsComponent implements OnInit, OnDestroy { private formEditorService; private formEditorConfig; private fb; selectedKeySubscription: Subscription; fieldItem: FieldItemModel; selectableItem: SelectableFieldItemModel; form: FormGroup; constructor(formEditorService: TfNgFormEditorService, formEditorConfig: FormEditorConfigService, fb: FormBuilder); ngOnInit(): void; initialiseFormSubscription(): void; initialiseItemConfigData(): void; initForm(): void; onChanges(): void; onComponentOptionsUpdated(cmpOptions: FieldItemComponentOptionsModel): void; showDetailsComponentOptions(): boolean; ngOnDestroy(): void; }