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

export { inlineCodeBlock };
