import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; export default class DSATableExpandedRow extends ShoelaceElement { static styles: CSSResultGroup; /** The table-row's role */ role: string; /** The colspan. Automatically set based on the number of columns in the table. */ colSpan: number; /** `true` if the table row should be expanded. */ expanded: boolean; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-table-expanded-row': DSATableExpandedRow; } }