import type { string_markdown_text } from '../../types/typeAliases';
/**
 * Removes Markdown formatting tags from a string.
 *
 * @param {string} str - The string to remove Markdown tags from.
 * @returns {string} The input string with all Markdown tags removed.
 * @public exported from `@promptbook/markdown-utils`
 */
export declare function removeMarkdownFormatting(str: string_markdown_text): string;
