/** * SvVisuallyHidden - content available to screen readers but visually hidden * (the accessible "sr-only" pattern). Use for extra context on icon-only * controls, live-region text, and skip links (which become visible on focus * via `focusable`). * * */ import type { Snippet } from 'svelte'; type Props = { /** Reveal the content when it (or a child) receives focus - for skip links. */ focusable?: boolean; /** Element/tag to render. */ as?: string; children?: Snippet; }; declare const SvVisuallyHidden: import("svelte").Component; type SvVisuallyHidden = ReturnType; export default SvVisuallyHidden;