import type { string_html } from '../../types/string_markdown';
/**
* Prettify the html code
*
* @param content raw html code
* @returns formatted html code
* @deprecated Prettier removed from Promptbook due to package size
*
* @private withing the package because of HUGE size of prettier dependency
*/
export declare function prettifyMarkdown(content: TContent): TContent;
/**
* Async version of prettifyMarkdown using dynamic imports
*
* @param content raw html code
* @returns formatted html code
* @deprecated Prettier removed from Promptbook due to package size
*
* @private withing the package because of HUGE size of prettier dependency
*/
export declare function prettifyMarkdownAsync(content: TContent): Promise;