import type { string_markdown_text } from '../../types/string_markdown'; /** * Function escapeMarkdownBlock will escape markdown block if needed * It is useful when you want have block in block * * Note: [🔂] This function is idempotent. * * @public exported from `@promptbook/markdown-utils` */ export declare function escapeMarkdownBlock(value: string_markdown_text): string_markdown_text;