/**
* Normalize Milkdown markdown for Platform / restore compatibility.
*
* Milkdown empty paragraphs serialize as HTML `
`. In GFM table rows:
* - cell that is only `
` → empty (empty-paragraph marker)
* - embedded `
` → Platform `\n` hard-break escape (do not drop)
*
* Outside tables, `
` becomes `\n`.
*/
export declare function normalizeMarkdown(md: string): string;