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