import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; export default class DSATableSingleCellRow extends ShoelaceElement { static styles: CSSResultGroup; /** The table-single-cell-row's role */ role: string; /** The colspan, necessary to correctly display the row */ colSpan: number; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-table-single-cell-row': DSATableSingleCellRow; } }