import type { Snippet } from "svelte"; import type { HTMLAnchorAttributes } from "svelte/elements"; type LinkProps = Omit & { href: string; variant?: "inline" | "standalone" | "muted"; /** @deprecated Raccourci pour variant="standalone" (parité React/Vue). Utilisez `variant`. */ standalone?: boolean; /** @deprecated Raccourci pour variant="muted" (parité React/Vue). Utilisez `variant`. */ muted?: boolean; disabled?: boolean; external?: boolean; class?: string; target?: HTMLAnchorAttributes["target"]; rel?: string; onclick?: (event: MouseEvent) => void; children?: Snippet; }; declare const Link: import("svelte").Component; type Link = ReturnType; export default Link; //# sourceMappingURL=Link.svelte.d.ts.map