import { AfterViewInit, EventEmitter, OnInit } from '@angular/core'; import { FormItemComponentInterface } from '../../../../interface/component'; import { IFormItemsControls } from '../../../../interface/form-structure'; import { IFieldShema } from '@usteknoloji/noosgrid'; import { BroadcastMessageService } from '@usteknoloji/noos-brodcast-messaging'; export interface IValueMap { field_name: string; field_title: string; field_alias: string; list_order: number; field_value: string[]; is_link?: boolean; } export declare class ViewinfoComponent implements OnInit, AfterViewInit, FormItemComponentInterface { private globalEventListenerService; prop: IFormItemsControls; isFilter: boolean; keyOnEnter: EventEmitter; datasetId: number; formId: number; formFieldStructure: IFieldShema[]; formRecordData: any; items: IValueMap[]; constructor(globalEventListenerService: BroadcastMessageService); ngOnInit(): void; convert_value(val: any): any; ngAfterViewInit(): void; private createItems; isNumber(controlValue: string): boolean; }