import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges } from '@angular/core'; import { NuoruoTableDirective } from './directive/nuoruo-table.directive'; import * as i0 from "@angular/core"; export declare class NuoruoTableComponent implements OnInit, AfterViewInit, OnChanges { private cdr; /** 用于生成表格列的数据 */ tableCol: any[]; /** 表格绑定的数据。 */ tableData: any[]; /** 用于说明哪个字段是控制展开隐藏的。 */ flagExpand: string; /** 出参 当拖动完成时,将调用这个事件 */ dragAfter: EventEmitter; /** 拖动的时候,保存的数据。 */ dragData: any; _tableData: any; qlist: QueryList; fixeded: boolean; flagEdit: boolean; constructor(cdr: ChangeDetectorRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; get tableWidth(): any; showList: any; ngAfterViewInit(): void; chagneItemShow(e: any, item: any): void; dragStart(item: any, index: number): void; drop(item: any, index: number): void; rightClick(e: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }