import { OnInit } from '@angular/core'; import { Observable } from 'rxjs'; import { TableModel, Column } from './table.model'; import { Selection, ItemSelection } from '../action/action.model'; import * as i0 from "@angular/core"; export declare class TableComponent implements OnInit { model: TableModel; selectionDisabled: boolean; rows: Array; cols: Array; selection: ItemSelection; showSelections: boolean; whenSelections: Observable; toggle: boolean; constructor(); ngOnInit(): void; handleClick(row: any): void; clearSelection(): void; selectionChange(row: any, selected: boolean): void; toggleAll(): void; setToggle(toggle: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }