import type { CSSResultGroup } from 'lit'; import LoadingStateElement from '../../internal/loading-state-element'; /** * @summary The table head defines a group of rows as part of the header section within a [table](/components/table/table) * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/tableau-table/tableau-table/web-Dr8U0zqh * * @slot Content to be placed inside the table head */ export default class DSATableHead extends LoadingStateElement { static styles: CSSResultGroup; /** The table-head's role */ role: string; private handleDefaultSlotChange; private getAllRows; private getAllCells; handleLoading(): void; handleSkeletonEffectChange(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-table-head': DSATableHead; } }