import { pool } from '../../core/pool/pool.js'; /** Monitor DOM nodes starting from a custom root element, into your own context */ export declare function monitorDOM(root: ParentNode, context: typeof pool): () => void; /** * Monitor DOM nodes starting from a custom root element, into the global * context */ export declare function monitorDOM(root: ParentNode): () => void; /** Monitor all DOM nodes within ``, into the global context */ export declare function monitorDOM(): () => void;