/** * Header row definition for the sbb-table. * Captures the header row's template and other header properties such as the columns to display. */ import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef } from '@angular/cdk/table'; export declare class SbbHeaderRowDef extends CdkHeaderRowDef { static ngAcceptInputTypeSticky: boolean | string | null | undefined; } /** * Footer row definition for the sbb-table. * Captures the footer row's template and other footer properties such as the columns to display. */ export declare class SbbFooterRowDef extends CdkFooterRowDef { static ngAcceptInputTypeSticky: boolean | string | null | undefined; } /** * Data row definition for the sbb-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 SbbRowDef extends CdkRowDef { } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class SbbHeaderRow extends CdkHeaderRow { } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class SbbFooterRow extends CdkFooterRow { } /** Data row template container that contains the cell outlet. Adds the right class and role. */ export declare class SbbRow extends CdkRow { }