import { ReactElement } from 'react'; declare const renderElement: (node: ReactElement, el: Element) => Promise<null>; declare const unmountElement: (el: Element) => void; export { renderElement, unmountElement };