import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef, CdkCellOutlet, DataRowOutlet, HeaderRowOutlet, FooterRowOutlet } from '@angular/cdk/table'; export declare class ElDataRowOutletDirective extends DataRowOutlet { } export declare class ElHeaderRowOutletDirective extends HeaderRowOutlet { } export declare class ElFooterRowOutletDirective extends FooterRowOutlet { } export declare class ElCellOutletDirective extends CdkCellOutlet { } /** * Header row definition for the el-table. * Captures the header row's template and other header properties such as the columns to display. */ export declare class ElHeaderRowDefDirective extends CdkHeaderRowDef { columns: Iterable; sticky: boolean; } /** * Footer row definition for the el-table. * Captures the footer row's template and other footer properties such as the columns to display. */ export declare class ElFooterRowDefDirective extends CdkFooterRowDef { columns: Iterable; sticky: boolean; } /** * Data row definition for the el-table. * Captures the data row's template and other properties such as the columns to display and * a when predicate that describes when this row should be used. */ export declare class ElRowDefDirective extends CdkRowDef { columns: Iterable; when: (index: number, rowData: T) => boolean; } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class ElHeaderRowComponent extends CdkHeaderRow { } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class ElFooterRowComponent extends CdkFooterRow { } /** Data row template container that contains the cell outlet. Adds the right class and role. */ export declare class ElRowComponent extends CdkRow { }