declare const _default: (selector: string, scope?: HTMLElement | Element | Document | undefined) => NodeList; /** * @param {string} selector - Element selector. * @param {Element} scope - Parent scope where you wanted to do search. * @returns {Element} All elements that has specified selector. * @description Find all elements within specified scope with selector that has been specified. */ export default _default;