import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef } from '@angular/cdk/table'; import { ElementRef } from '@angular/core'; /** * Header template container that contains the cell outlet. Adds the right class and role. */ export declare class TsHeaderRowComponent extends CdkHeaderRow { elementRef: ElementRef; constructor(elementRef: ElementRef); } /** * Data row template container that contains the cell outlet. Adds the right class and role. */ export declare class TsRowComponent extends CdkRow { elementRef: ElementRef; constructor(elementRef: ElementRef); } /** * Header row definition for the {@link TsTableComponent}. * * Captures the header row's template and other header properties such as the columns to display. */ export declare class TsHeaderRowDefDirective extends CdkHeaderRowDef { } /** * Footer row definition for the {@link TsTableComponent}. * * Captures the footer row's template and other footer properties such as the columns to display. */ export declare class TsFooterRowDefDirective extends CdkFooterRowDef { } /** * Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class TsFooterRowComponent extends CdkFooterRow { } /** * Data row definition for the {@link TsTableComponent}. * * Captures the header row's template and other row properties such as the columns to display and * a when predicate that describes when this row should be used. */ export declare class TsRowDefDirective extends CdkRowDef { }