/**
* Sanitizes HTML content by removing all classes, IDs, and other attributes
* @param html - The HTML string to sanitize
* @returns Clean HTML string without classes, IDs, or other attributes
*/
export declare const sanitizeHtml: (html: string) => string;
/**
* Formats HTML content with proper indentation
* @param html - The HTML string to format
* @returns Formatted HTML string with proper indentation
*/
export declare const formatHtml: (html: string) => string;