import Element from './element'; import { SupportElementType } from './constants'; export default function parse(html: string): { rootNode: Element; elements: SupportElementType[]; };