import { Checkbox } from '@material/mwc-checkbox'; import { LitElement } from 'lit'; export interface CellCheckedEventDetail { checked: boolean; } export declare class DataTableCellBase extends LitElement { /** * Cell type. If `checkbox`, the checkbox inside the cell will also be created if not supplied via default slot. * If `numeric`, the cell text will be aligned to the right. */ type?: '' | 'numeric' | 'checkbox'; /** @internal */ protected checkboxSlotElements: Checkbox[]; /** @internal */ get checkbox(): Checkbox | undefined; render(): import("lit-html").TemplateResult<1>; renderCheckbox(): import("lit-html").TemplateResult<1> | undefined; onSlotChanged(): void; onCheckboxClicked: (e: Event) => void; }