/** * Cell definition for the sbb-table. * Captures the template of a column's data row cell as well as cell-specific properties. */ import { CdkCell, CdkCellDef, CdkColumnDef, CdkFooterCell, CdkFooterCellDef, CdkHeaderCell, CdkHeaderCellDef } from '@angular/cdk/table'; import { ElementRef } from '@angular/core'; export declare class SbbCellDef extends CdkCellDef { } /** * Header cell definition for the sbb-table. * Captures the template of a column's header cell and as well as cell-specific properties. */ export declare class SbbHeaderCellDef extends CdkHeaderCellDef { } /** * Footer cell definition for the sbb-table. * Captures the template of a column's footer cell and as well as cell-specific properties. */ export declare class SbbFooterCellDef extends CdkFooterCellDef { } /** * Column definition for the sbb-table. * Defines a set of cells available for a table column. */ export declare class SbbColumnDef extends CdkColumnDef { } /** Header cell template container that adds the right classes and role. */ export declare class SbbHeaderCell extends CdkHeaderCell { constructor(columnDef: CdkColumnDef, elementRef: ElementRef); } /** Footer cell template container that adds the right classes and role. */ export declare class SbbFooterCell extends CdkFooterCell { constructor(columnDef: CdkColumnDef, elementRef: ElementRef); } /** Cell template container that adds the right classes and role. */ export declare class SbbCell extends CdkCell { constructor(columnDef: CdkColumnDef, elementRef: ElementRef); }