import React from 'react'; /** * @param {Element|HTMLElement|Node} - Element or node reference. * @param {string} - CSS position that wanted to be checked on the element. * @returns {boolean} True or false based paremeters given by the users. */ declare const hasPosition: (el: Element | HTMLElement | React.ReactNode, type?: string) => boolean; export default hasPosition;