import { type Snippet } from 'svelte'; import type { HTMLAnchorAttributes } from 'svelte/elements'; export type LinkProps = { /** * The content to display inside the link. */ children?: Snippet; } & HTMLAnchorAttributes; /** Represents a link that can be used to navigate within the application. */ declare const Link: import("svelte").Component; type Link = ReturnType; export default Link;