/** * Wraps plain URLs in markdown link syntax [url](url) so that * translation pipelines preserve the URL separately from surrounding text. * * Uses remark AST parsing to identify URLs that appear in text nodes only. * */ export default function wrapPlainUrls(content: string): string;