/**
 * Simplifies HTML by keeping only essential elements and attributes
 * @param html The HTML content to simplify
 * @returns Simplified HTML string
 */
export declare function simplifyHtml(html: string): string;
/**
 * Extracts and sanitizes the body content from HTML
 * @param html The full HTML content
 * @param description The element description to help focus the extraction
 * @returns Sanitized body content
 */
export declare function extractBodyContent(html: string): string;
