import { EventEmitter, OnInit, OnDestroy } from '@angular/core'; import { TableService } from './table.service'; export declare class TableDirective implements OnDestroy, OnInit { private tableService; uiSelectedItemsChange: EventEmitter; private sub; constructor(tableService: TableService); ngOnInit(): void; ngOnDestroy(): void; }