/** * @internal * Remove all forbidden elements from a parsed HTML document * @param doc The parsed HTML document to clean * @param forbiddenElements Array of tag names to remove (e.g., ['iframe', 'script']) */ export declare function cleanForbiddenElements(doc: Document, forbiddenElements: string[]): void;