/**
* Converts an HTML string to the markdown subset supported by markdownFormatter.
*
* Supported tags: strong, b, em, i, code, mark, ul, ol, li, br, p.
* Unsupported tags and their content are dropped entirely.
* HTML entities are decoded to plain text.
*
* @param value - The HTML string to convert
* @returns The equivalent markdown string, or empty string for null/undefined/empty input
*/
export declare function htmlToMarkdown(value?: string | null): string;