import type { JSX } from "react"; export interface TextLinkProps { text: string; enabled?: boolean; href?: string; rel?: string; target?: string; onClick?: () => void; className?: string; } /** * @deprecated Use `Link`. */ export declare const TextLink: (props: TextLinkProps) => JSX.Element;