import type { I$Slottable, INodeCompose } from '../ui-renderer-dom/index.js'; import type { Route } from './types.js'; export interface I$Link { route: Route; $content: I$Slottable; params?: Record; $anchor?: INodeCompose; } export declare const $defaultAnchor: INodeCompose; export declare const $Link: ({ route, $content, params, $anchor }: I$Link) => (iTether: import("../ui/types.js").IOutputTethers<{ focus: boolean; click: MouseEvent; active: boolean; }>) => I$Slottable;