/** @jsxImportSource @opentui/react */ import type { ReactNode } from "react"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export declare function LinkableText(props: { text: string; theme: Theme; fg?: string; selectable?: boolean; wrapMode?: "none" | "char" | "word" | undefined; }): ReactNode;