import { OnInit } from '@angular/core'; import { NodeBase } from '../../form-entry/form-factory/form-node'; import { AfeFormGroup } from '../../abstract-controls-extension/afe-form-group'; import { DataSources } from '../../form-entry/data-sources/data-sources'; import { DataSource } from '../../form-entry/question-models/interfaces/data-source'; import { EncounterViewerService } from '../encounter-viewer.service'; export declare class EncounterViewerComponent implements OnInit { private encounterViewerService; private dataSources; rootNode: NodeBase; enc: any; fileDataSource: DataSource; remoteDataSource: DataSource; customDataSource: DataSource; _schema: any; parentGroup: AfeFormGroup; parentComponent: EncounterViewerComponent; node: NodeBase; schema: any; encounter: any; form: any; constructor(encounterViewerService: EncounterViewerService, dataSources: DataSources); getQuestionNodes(pages: any): any; ngOnInit(): void; questionsAnswered(node: any): boolean; questionAnswered(node: NodeBase): boolean; checkForColon(questionLabel: string): boolean; traverse(o: any, type?: any): any[]; repeatingGroup(nodes: any): any[]; }