14 lines
542 B
TypeScript
14 lines
542 B
TypeScript
import ShoelaceElement from '../../internal/shoelace-element.js';
|
|
import type { CSSResultGroup } from 'lit';
|
|
/**
|
|
* @summary The visually hidden utility makes content accessible to assistive devices without displaying it on the screen.
|
|
* @documentation https://shoelace.style/components/visually-hidden
|
|
* @status stable
|
|
* @since 2.0
|
|
*
|
|
* @slot - The content to be visually hidden.
|
|
*/
|
|
export default class SlVisuallyHidden extends ShoelaceElement {
|
|
static styles: CSSResultGroup;
|
|
render(): import("lit-html").TemplateResult<1>;
|
|
}
|