/**
* Markdown → HTML conversion for email bodies.
*
* Wraps the `marked` library with email-safe defaults:
* - GitHub-flavored markdown (tables, strikethrough, etc.)
* - Inline HTML wrapper with basic email-safe styling
*/
/**
* Convert a Markdown string to HTML suitable for email.
*
* Returns a complete HTML fragment with minimal inline styling
* for consistent rendering across email clients.
*
* @example
* ```ts
* import { markdownToHtml } from '@marcfargas/go-easy/gmail';
*
* const html = markdownToHtml('# Hello\n\nThis is **bold** and _italic_.');
* ```
*/
export declare function markdownToHtml(md: string): string;
//# sourceMappingURL=markdown.d.ts.map