import { CdkFooterRow, CdkFooterRowDef, CdkHeaderRow, CdkHeaderRowDef, CdkRow, CdkRowDef, CdkCellOutlet, DataRowOutlet, HeaderRowOutlet, FooterRowOutlet, NoDataRowOutlet } from '@angular/cdk/table'; import * as i0 from "@angular/core"; export declare class NbDataRowOutletDirective extends DataRowOutlet { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class NbHeaderRowOutletDirective extends HeaderRowOutlet { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class NbFooterRowOutletDirective extends FooterRowOutlet { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class NbNoDataRowOutletDirective extends NoDataRowOutlet { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export declare class NbCellOutletDirective extends CdkCellOutlet { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Header row definition for the nb-table. * Captures the header row's template and other header properties such as the columns to display. */ export declare class NbHeaderRowDefDirective extends CdkHeaderRowDef { private _hasStickyRowChanged; columns: Iterable; get sticky(): boolean; set sticky(value: boolean); private _stickyRow; hasStickyChanged(): boolean; /** Resets the sticky changed state. */ resetStickyChanged(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Footer row definition for the nb-table. * Captures the footer row's template and other footer properties such as the columns to display. */ export declare class NbFooterRowDefDirective extends CdkFooterRowDef { private _hasStickyRowChanged; columns: Iterable; get sticky(): boolean; set sticky(value: boolean); private _stickyRow; /** Whether the sticky state has changed. */ hasStickyChanged(): boolean; /** Resets the sticky changed state. */ resetStickyChanged(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } /** * Data row definition for the nb-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 NbRowDefDirective extends CdkRowDef { columns: Iterable; when: (index: number, rowData: T) => boolean; static ɵfac: i0.ɵɵFactoryDeclaration, never>; static ɵdir: i0.ɵɵDirectiveDeclaration, "[nbRowDef]", never, { "columns": { "alias": "nbRowDefColumns"; "required": false; }; "when": { "alias": "nbRowDefWhen"; "required": false; }; }, {}, never, never, false, never>; } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class NbHeaderRowComponent extends CdkHeaderRow { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** Footer template container that contains the cell outlet. Adds the right class and role. */ export declare class NbFooterRowComponent extends CdkFooterRow { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** Data row template container that contains the cell outlet. Adds the right class and role. */ export declare class NbRowComponent extends CdkRow { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }