import type { Snippet } from "svelte"; import type { HTMLAnchorAttributes } from "svelte/elements"; type SkipLinkProps = Omit & { /** Cible de l'ancre (id du contenu principal). */ href?: string; class?: string; children?: Snippet; }; declare const SkipLink: import("svelte").Component; type SkipLink = ReturnType; export default SkipLink; //# sourceMappingURL=SkipLink.svelte.d.ts.map