import { AfterViewInit, ChangeDetectorRef, ComponentFactoryResolver, EventEmitter, OnInit, QueryList, ViewContainerRef } from '@angular/core'; import { NoosFormTypeService } from '../../../../class/NoosFormTypeService'; import { FormItemComponentInterface, ISurveySelectedEvent } from '../../../../interface/component'; import { IFormItemsControls } from '../../../../interface/form-structure'; import { IFieldShema } from '@usteknoloji/noosgrid'; export declare class ViewSurveyComponent implements OnInit, AfterViewInit, FormItemComponentInterface { private cd; private componentFactoryResolver; private noosFormTypeFactory; widgetTargets: QueryList; prop: IFormItemsControls; isFilter: boolean; isForm: boolean; keyOnEnter: EventEmitter; datasetId: number; formId: number; recordId: number; formFieldStructure: IFieldShema[]; formRecordData: any; pkeys: any; surveyReturns: ISurveySelectedEvent[]; constructor(cd: ChangeDetectorRef, componentFactoryResolver: ComponentFactoryResolver, noosFormTypeFactory: NoosFormTypeService); ngOnInit(): void; ngAfterViewInit(): void; compileForm(): void; }