import MasterCSS, { Config } from '@master/css';
import { HTMLElement } from 'node-html-parser';
/**
 * Renders the page-required and sorted CSS text from HTML and injected it back into HTML
 * @param html
 * @param config
 */
export default function render(html: string, config?: Config): {
    html: string;
    root: HTMLElement;
    css?: MasterCSS;
    classes?: string[];
};
