import type { string_html, string_markdown } from '../../types/string_markdown';
/**
 * Removes Markdown (or HTML) comments
 *
 * @param {string} content - The string to remove comments from.
 * @returns {string} The input string with all comments removed.
 *
 * @public exported from `@promptbook/markdown-utils`
 */
export declare function removeMarkdownComments<TContent extends string_html | string_markdown>(content: TContent): TContent;
