/**
 * Removes Markdown link 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 removeMarkdownLinks(str: string): string;
/**
 * @see https://chat.openai.com/chat/bb7c3a5b-fe9c-4ccc-9057-f47e0fd66489
 */
