/**
 * Append DOM element or plain HTML to the beginning of a given DOM element
 *
 * @param elm - The DOM element to append to
 * @param insertElm - DOM element or HTML (or selector) to append to insert
 * @return The inserted child element
 */
export default function prepend(elm: Element, insertElm: string | Node): Element | null;
