import type { Snippet } from 'svelte'; type LinkVariant = 'default' | 'muted' | 'brand' | 'underline'; type LinkSize = 'sm' | 'md' | 'lg'; interface LinkProps { href: string; variant?: LinkVariant; size?: LinkSize; external?: boolean; disabled?: boolean; class?: string; children?: Snippet; onclick?: (e: MouseEvent) => void; } declare const Link: import("svelte").Component; type Link = ReturnType; export default Link;