import{type TemplateResult}from'lit';import{LyraElement}from'../../../internal/lyra-element.js'; /** * `` — hides its content from sight while leaving it in the accessibility * tree, so screen readers still announce it. * * Content becomes visible again while anything inside it holds focus, which is what makes the * element usable for skip links: the link is invisible until a keyboard user tabs to it. * * @customElement lr-visually-hidden * @slot - The content to hide visually. * @status stable * @since 8.0.0 */ export declare class LyraVisuallyHidden extends LyraElement{static styles:import("lit").CSSResultGroup[];render():TemplateResult;}declare global{interface HTMLElementTagNameMap{'lr-visually-hidden':LyraVisuallyHidden;}}