import { type ReactNode, type ComponentPropsWithoutRef } from 'react'; import type { UrlObject } from '../types/router.ts'; export interface LinkProps extends Omit, 'href'> { replace?: boolean; to: string | UrlObject; } export declare function Link({ children, onClick, replace, to, ...props }: LinkProps): ReactNode; //# sourceMappingURL=link.d.ts.map