import { JSX } from "react"; /** * Props for the {@link Link} component. */ export type LinkProps = JSX.IntrinsicElements["a"] & { /** The URL to navigate to. */ href: string; }; /** * A navigational component that renders an `` tag. * * @remarks * This component intercepts click events to perform client-side navigation using the * router's navigation context. It falls back to standard browser navigation if * modifier keys (Ctrl, Meta, Alt, Shift) are pressed or if the event is already prevented. * * @param props - The component props. * @returns The rendered anchor element. * * @example * ```tsx * View User * ``` */ export declare function Link({ onClick, href, ...props }: LinkProps): JSX.Element;