import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary The table's toolbar defines features and functionalities within the context of a table * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/tableau-table/barre-d-outils-de-tableau-table-toolbar/web-nyoQXNPN * * @slot filters - The toolbar's filters slot * @slot columns-filter - The toolbar's columns filter slot * @slot search - The toolbar's search slot */ export default class DSATableToolbar extends ShoelaceElement { static styles: CSSResultGroup; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-table-toolbar': DSATableToolbar; } }