import type { Ref } from "vue"; export declare const elementMutation: { watch: (node: Node, options: MutationObserverInit) => Ref; unwatch: (node: Node) => void; unwatchAll: () => void; destroy: () => void; }; export declare function elementMutationWithRoot(): { watch: (node: Node, options: MutationObserverInit) => Ref; unwatch: (node: Node) => void; unwatchAll: () => void; destroy: () => void; };