import { Injector, OnInit, AfterViewInit } from '@angular/core'; import { DxDataGridComponent } from 'devextreme-angular'; import { GridDataSource } from './dynamic-grid.component'; import { KmmNgBackendService } from 'kmm-ng-backend'; export declare abstract class DynamicGridPresenterComponent implements OnInit, AfterViewInit { protected _injector: Injector; grid: DxDataGridComponent; abstract $dataSource: GridDataSource; $columns: any; _toolbar: any; _appService: KmmNgBackendService; constructor(_injector: Injector); ngOnInit(): void; ngAfterViewInit(): void; loadDataSource: (reload?: boolean) => void; onToolbarPreparing: (event: any) => void; refreshGrid: () => void; toggleModeloPopup: (showForm?: boolean) => void; }