/** * Whether or not the container contains the node, * and if not, whether the node is contained by any element * slotted in to the container * @param container haystack * @param node needle */ export declare function containsDeep(container: Element, node: Node): boolean;