export interface HTMLElementWithParentNode extends HTMLElement { parentNode: Node & ParentNode; } export declare const isOpen: (element: HTMLElement) => element is HTMLElementWithParentNode; export declare const isInPage: (element: HTMLElement) => boolean; export declare const isVisible: (element: HTMLElement) => boolean;