import { ElementRef } from '@angular/core'; import { BComponent } from '../bcomponent'; export declare class TableBase extends BComponent { items: any[]; headers: any[]; striped: boolean; constructor(el?: ElementRef); Initialize: (items?: any[], headers?: any[], striped?: boolean) => this; extractHeaders: (object: any) => any[]; extractRows: (object: any[]) => any[]; ngOnChildChanges: () => void; } export declare class TableBComponent extends TableBase { constructor(); } export declare class TableBDirective extends TableBase { constructor(el: ElementRef); }