/** * SkipToContent - WCAG 2.1 AA compliant skip link. * Place at the very beginning of your layout, before navigation. * Requires a
element as the target. * * Styles from canon.css handle visibility (hidden until focused). */ interface Props { /** Target element ID (default: "main-content") */ target?: string; /** Link text (default: "Skip to main content") */ text?: string; } declare const SkipToContent: import("svelte").Component; type SkipToContent = ReturnType; export default SkipToContent;