/** * Checks if a given node contains a popup with a nested element identified by a specific test ID. * * @param node - The node to check. * @param nestedElementQuery - The query to look for the nested element. * @returns True if the node contains the popup, false otherwise. */ export declare const containsPopupWithNestedElement: (node: Node | null | undefined, nestedElementQuery: string) => boolean;