/** * Set or remove the `inert` attribute on all given elements. * * @param elements The elements to set or remove the `inert` attribute on. * @param enabled Whether to set or remove the `inert` attribute. */ export declare function setInertAttributes(elements: Element[], enabled: boolean): void; /** * Get all siblings of an element, including the siblings of its parents. * Use this to find all elements that should be inert when a modal is open. * And then use `setInertAttributes` to set or remove the `inert` attribute * on all of them. */ export declare function getElementsAround(element: Element): Element[];