import { TestableLitElement } from '../../utils/components/testable-lit-element/testable-lit-element.ts'; import { ColumnDefinition } from './table-column-definition.ts'; import { RowData } from './table-cell-config.ts'; export declare class NjcTable extends TestableLitElement { columns: ColumnDefinition[]; data: RowData[]; tableAriaLabelledBy: string | null; selectable: boolean; currentPage: number; totalItems: number; itemsPerPage: number; }