import type { CSSResultGroup } from 'lit'; import { ShoelaceElement } from '../../internal/shoelace-element'; /** * @summary Skip link item define an hyperlink within a [skip-link](/components/skip-link) * @documentation https://dsa.service-public-autonomie.fr/latest/librairie-webcomponents/lien-d-acces-rapide-quick-access-link/web-EDrofFeg * * @slot - The skip-link-item's label */ export default class DSASkipLinkItem extends ShoelaceElement { static styles: CSSResultGroup; anchor: HTMLAnchorElement; /** Specifies the URL of the page or the section the link goes to. */ href: string; private handleFocus; private handleBlur; /** Sets focus on the anchor. */ focus(options?: FocusOptions): void; /** Removes focus from the anchor. */ blur(): void; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'dsa-skip-link-item': DSASkipLinkItem; } }