import { LitElement } from 'lit'; /** * * `kyn-empty-tr` Web Component. * Designed to display an empty state row in a table. * * @slot unnamed - The slot for adding content to the empty section. */ export declare class TableEmptyRow extends LitElement { static styles: import("lit").CSSResult; /** aria role. * @internal */ accessor role: string; /** * The number of columns that the expanded row should span. * Reflects the `colspan` attribute. */ accessor colSpan: number; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'kyn-empty-tr': TableEmptyRow; } } //# sourceMappingURL=table-empty-row.d.ts.map