/** * Replace the inner HTML content of an HTML Element. * * @export * @param {HTMLElement} el * @param {string} existingSelector * @param {(HTMLElement | null)} contentElement */ export declare function replaceHtmlInElement(el: HTMLElement, existingSelector: string, contentElement: HTMLElement | null): void;