import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Footer sitemap items define the items within a [footer-sitemap](/components/footer-sitemap) context. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/pied-de-page-footer/plan-du-site-footer-sitemap/web-BhHNimhB * * @slot - The main content * */ export default class DSAFooterSitemapItem extends ShoelaceElement { static styles: CSSResultGroup; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-footer-sitemap-item': DSAFooterSitemapItem; } }