/** * Gets element that currently has focus with support for open shadow roots. * @param root Optional container to search for the active element. Defaults to `document`. * @returns The Element within the DOM that currently has focus. */ declare const getActiveElement: (root?: DocumentOrShadowRoot) => Element | null; export default getActiveElement; //# sourceMappingURL=getActiveElement.d.ts.map