import { UIElement } from '@instructure/shared-types'; /** * --- * category: utilities/DOM * --- * * Determine if an element is the active element * @module isActiveElement * @param { Node | Window | React.ReactElement | React.Component | function | null } el - component or DOM node * @returns {boolean} if the element is the active element */ declare function isActiveElement(el?: UIElement): boolean; export default isActiveElement; export { isActiveElement }; //# sourceMappingURL=isActiveElement.d.ts.map