import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, Renderer2 } from '@angular/core'; export declare class TableComponent implements AfterViewInit, OnDestroy { private cdr; private renderer2; private platformId; defaultClass: boolean; withGroups: boolean; small: boolean; bordered: boolean; withScroll: boolean; stickyTop: number; showScrollArrows: boolean; scroll: ElementRef; hasIdentityCol: boolean; canScrollRight: boolean; canScrollLeft: boolean; private subscriptions; get smallClass(): boolean; get borderedClass(): boolean; get withScrollClass(): boolean; get hasIdentityColClass(): boolean; constructor(cdr: ChangeDetectorRef, renderer2: Renderer2, platformId: string); ngAfterViewInit(): void; ngOnDestroy(): void; scrollLeft(): void; scrollRight(): void; private checkScroll; }