/** * Resolves an element by ID, waiting for document readiness if needed. * @param {string} id - The element ID to resolve. * @param {ParentNode} root - Optional root node to query from (defaults to document). * @returns {Promise} A promise that resolves with the element or `null` if not found. */ export declare function resolveElementById(id: string, root?: ParentNode): Promise; //# sourceMappingURL=resolveElementById.d.ts.map