import { AnchorHTMLAttributes, FC, Ref } from 'react'; export interface LinkProps extends AnchorHTMLAttributes { /** * Renders the link as a child component using a `Slot` (e.g., Radix UI `asChild`). * Useful for composing links with routing libraries like Next.js (``) or `react-router`. */ asChild?: boolean; /** * Ref to the underlying anchor (``) element. * Useful for DOM access, focus control, or measurement. */ ref?: Ref; } /** A Link is a UI component that allows users to navigate to another page, section, or resource, typically styled as text or buttons that can be clicked or tapped. */ export declare const Link: FC;