import type { NavigationOptions, NavigationTarget, Params, SearchParams } from "@real-router/core"; import type { Snippet } from "svelte"; type $$ComponentProps = { routeName?: string; routeParams?: Params; routeSearch?: SearchParams; to?: NavigationTarget; routeOptions?: NavigationOptions; class?: string; activeClassName?: string; activeStrict?: boolean; ignoreQueryParams?: boolean; /** * URL fragment (decoded form, no leading "#") (#532). * - omitted/`undefined` → preserve current fragment on same-route navigation * - `""` → clear fragment * - non-empty → set fragment */ hash?: string; target?: string; children?: Snippet; onclick?: (evt: MouseEvent) => void; [key: string]: unknown; }; declare const Link: import("svelte").Component<$$ComponentProps, {}, "">; type Link = ReturnType; export default Link;