import * as React from 'react'; import type { JSX } from 'react'; import type { RelativeRoutingType } from 'react-router-dom'; export type LinkProps = { to: string; target?: '_self' | '_blank'; external?: boolean; className?: string; style?: React.CSSProperties; innerRef?: React.Ref; languageInsensitive?: boolean; onClick?: () => void; reloadDocument?: boolean; replace?: boolean; state?: unknown; preventScrollReset?: boolean; relative?: RelativeRoutingType; viewTransition?: boolean; [key: string]: unknown; rel?: string; }; export declare function Link(props: React.PropsWithChildren): JSX.Element;