import { AfterViewInit, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { FormItemComponentInterface } from '../../../../interface/component'; import { IFormItemsControls } from '../../../../interface/form-structure'; import { IFieldShema } from '@usteknoloji/noosgrid'; export interface IValueMap { field_name: string; field_alias: string; list_order: number; title?: string; } export declare class ViewlabelComponent implements OnInit, AfterViewInit, FormItemComponentInterface, OnChanges { prop: IFormItemsControls; isFilter: boolean; thisAppearance: any; keyOnEnter: EventEmitter; formFieldStructure: IFieldShema[]; formRecordData: any; headerValue: string; className: string; datasetId: number; formId: number; valueList: IValueMap[]; constructor(); ngOnInit(): void; _get_col_percent(items: IValueMap[]): string; ngAfterViewInit(): void; loadData(): void; convert_value(val: any): any; ngOnChanges(changes: SimpleChanges): void; }