import { type HTMLElement } from 'node-html-parser';
/**
 * @param html
 * @returns {classes from html, root element}
 */
export default function parseHTML(html: string): {
    classes: string[];
    root: HTMLElement;
};
