/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { CdkTable } from '@angular/cdk/table'; import { ChangeDetectorRef, ElementRef, IterableDiffers } from '@angular/core'; import { Directionality } from '@angular/cdk/bidi'; import { Platform } from '@angular/cdk/platform'; export declare class HcTable extends CdkTable { protected _differs: IterableDiffers; protected _changeDetectorRef: ChangeDetectorRef; protected _elementRef: ElementRef; protected readonly _dir: Directionality; /** Overrides the sticky CSS class set by the `CdkTable`. */ protected stickyCssClass: string; constructor(_differs: IterableDiffers, _changeDetectorRef: ChangeDetectorRef, _elementRef: ElementRef, _platform: Platform, role: string, _dir: Directionality); _hostHcTableClass: boolean; _hostHcBordersClass: boolean; /** Sets whether the table should have a 2px border around each cell (defaults to false) */ borders: boolean; }