import { type JSX } from 'woby'; import type { F, RouterPath } from '../types'; declare const Link: ({ to, replace, state, title, children, ...rest }: { to: F; replace?: boolean; state?: any; title?: F; children?: JSX.Children; } & Omit, "children" | "href" | "replace" | "state" | "title" | "onClick">) => JSX.Element; export default Link; //# sourceMappingURL=link.d.ts.map