import { LitElement } from 'lit'; import { DataTableCell } from './mwa-data-table'; export interface RowCheckedEventDetail { selected: boolean; } export declare class DataTableRowBase extends LitElement { /** * Whether the row is selected. */ selected: boolean; /** @internal */ slot: string; /** * Cells of the row. */ cells: DataTableCell[]; /** * Overall height of the table. Available in three different measures. */ density?: '' | 'tight' | 'comfortable' | 'dense' | 'compact'; /** @internal */ protected checkboxCells: DataTableCell[]; /** @internal */ get checkboxCell(): DataTableCell | undefined; render(): import("lit-html").TemplateResult<1>; /** @internal */ onCheckboxClicked: (e: Event) => void; protected updated(_changedProperties: any): void; }