import { FunctionComponent } from 'react'; import type { TokenItem } from './token-item.js'; interface TokenizedTextProps { item: TokenItem; } /** * `TokenizedText` renders a text string with tokens that can be either strings, * links, and commands. */ declare const TokenizedText: FunctionComponent; export { TokenizedText };