/** * Convert HTML content to Markdown */ export declare function exportAsMarkdown(title: string, htmlContent: string): Promise; /** * Export content as DOCX using docx library (loaded from CDN) */ export declare function exportAsDocx(title: string, htmlContent: string): Promise; /** * Export content as PDF */ export declare function exportAsPdf(title: string, htmlContent: string): Promise; /** * Export to Google Docs * Opens a new Google Docs document with the content copied to clipboard */ export declare function exportToGoogleDocs(title: string, htmlContent: string): Promise;