import { EventEmitter, OnChanges, OnInit } from '@angular/core'; import { EditorService } from '../../services/editor/editor.service'; import { TreeService } from '../../services/tree/tree.service'; export declare class RelationalMetadataComponent implements OnInit, OnChanges { private editorService; private treeService; contentMetadata: any; formConfig: any; contentId: any; statusChanges: EventEmitter; valueChanges: EventEmitter; formFieldProperties: any; constructor(editorService: EditorService, treeService: TreeService); ngOnInit(): void; ngOnChanges(): void; attachDefaultValues(): void; isReviewMode(): any; ifFieldIsEditable(fieldCode: any): boolean; onFormStatusChange(event: any): void; onFormValueChange(event: any): void; }