import { Vue } from 'vue-property-decorator'; import { ITableConfig } from './type'; export default class VReportTable extends Vue { config: ITableConfig; data: Array; infiniteScrollDisabled: boolean; infiniteScrollImmediate: boolean; infiniteScrollDistance: number; infiniteScrollDelay: number; private timer; private tableId; get table(): any; onWatchColumns(newVal: any, oldVal: any): void; mounted(): void; destroyed(): void; private syncPostion; showOverflowTooltip(column: any): any; disabled(scope: any, column: any): any; loadMore(): void; scrollTop(top?: number): void; getCellValue(...args: any[]): string; }