/**
* Generate a complete HTML document from content
*
* @param content - The HTML content string
* @param title - The document title
* @param styles - Additional CSS styles to include
* @returns A complete HTML document as a string
*/
export declare const generateHtmlDocument: (content: string, title?: string, styles?: string) => string;
/**
* Export HTML content to a file
*
* @param htmlContent - The HTML content to export
* @param filename - The name of the file to save
*/
export declare const exportHtml: (htmlContent: string, filename?: string) => void;