/** * Returns true when `element` and `container` resolve to the same nearest * top-layer host (or both resolve to `null`, meaning the document layer). */ export declare function isInSameLayer({ element, container, }: { element: HTMLElement; container: HTMLElement; }): boolean;