/** * Wraps text in a markdown inline codeblock * @param content The expression to be wrapped in the codeblock */ declare function inlineCodeBlock(content: C): `\`${C}\``; export { inlineCodeBlock };