import { type Snippet } from 'svelte'; interface Props { /** The path to navigate to */ to: string; /** Whether to replace current history entry (default: false) */ replace?: boolean; /** CSS class to apply when link is active */ activeClass?: string; /** Whether to match exactly for active state (default: false) */ exact?: boolean; /** Whether the link is disabled */ disabled?: boolean; /** Additional CSS classes */ class?: string; /** Additional state to pass with navigation */ state?: any; /** HTML element to render (default: 'a') */ element?: 'a' | 'button'; /** Children snippet */ children?: Snippet; /** Additional attributes to pass to the element */ [key: string]: any; } declare const Link: import("svelte").Component; type Link = ReturnType; export default Link;