//#region src/utilities/mutation-observer.d.ts /** * Watches `target` for DOM mutations and calls `callback` with each batch of * `MutationRecord`s. */ declare function createMutationObserver(target: Element, options: MutationObserverInit, callback: (records: MutationRecord[]) => void): Disposable; //#endregion export { createMutationObserver };