import { UIElement } from '@instructure/shared-types'; /** * --- * category: utilities/DOM * --- * * Retrieves the offset parents of a specified element. * Includes parents of nodeType 1 (Element nodes such * as

or

) that have either been transformed * or that do not have static position. * @module getOffsetParents * @param { Node | Window | React.ReactElement | React.Component | function | null } el - component or DOM node * @returns {Array} offset parents */ declare function getOffsetParents(el?: UIElement): (Node | Window | null)[]; export default getOffsetParents; export { getOffsetParents }; //# sourceMappingURL=getOffsetParents.d.ts.map