/** * @param selectors A DOMString containing one or more selectors to match. * @param root The node's root. * @returns The first element that is a descendant of node that matches the selectors or null. */ declare const deepSelector: (selectors: string, root?: Document | ShadowRoot | null) => Element | null; export default deepSelector; //# sourceMappingURL=deepSelector.d.ts.map