import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Footer sitemap displays a list of links within a [footer](/components/footer) context. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/pied-de-page-footer/plan-du-site-footer-sitemap/web-BhHNimhB * * @slot - The sitemap links. Must be `` elements. * @slot label - Used to display a label. * */ export default class DSAFooterSitemap extends ShoelaceElement { static styles: CSSResultGroup; private readonly hasSlotController; /** Draws the sitemap in a vertical orientation. */ vertical: boolean; /** Defines the links alignment. */ alignLinks: 'left' | 'center' | 'right'; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-footer-sitemap': DSAFooterSitemap; } }