import { OnInit } from '@angular/core'; import { NgxDynamicTableConfig } from '../lib/interfaces/ngx-dynamic-table-config'; export declare class NgxDynamicTableComponent implements OnInit { config: NgxDynamicTableConfig; from: number; to: number; total: number; offset: number; disablePrev: boolean; disableNext: boolean; tableData: Array; constructor(); ngOnInit(): void; next(): void; prev(): void; disableStatus(): void; paginatedData(): any[]; }