/** * Mark all elements on the page as inert, except for the ones that are allowed. * * We move up the tree from the allowed elements, and mark all their siblings as * inert. If any of the children happens to be a parent of one of the elements, * then that child will not be marked as inert. * * E.g.: * * ```html * *
*
*
Sidebar
*
* * * * *
*
* * * ``` */ export declare function useInertOthers(enabled: boolean, { allowed, disallowed, }?: { allowed?: () => (HTMLElement | null)[]; disallowed?: () => (HTMLElement | null)[]; }): void;