import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Skip links allows users to jump directly to specific content areas, bypassing repetitive or navigational elements. Skip links are often placed at the beginning of a web page and are hidden from the visual layout until they receive focus. * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/lien-d-acces-rapide-quick-access-link/web-EDrofFeg * * @slot - The link options. Must be `` elements. */ export default class DSASkipLinks extends ShoelaceElement { static styles: CSSResultGroup; private readonly localize; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-skip-links': DSASkipLinks; } }