/// import { LinkRouter } from '../types/index.js'; export interface Props { /** * The URL of the link. */ to: string; /** * The target of the link. */ external?: boolean; /** * The content of the link. */ children?: React.ReactNode; /** * Select what router to use. React router will only be used if it is in the context. */ router?: LinkRouter; className?: string; onClick?: React.MouseEventHandler; } export type Ref = HTMLAnchorElement; declare const Link: import("react").ForwardRefExoticComponent>; export default Link;