/** * Manages the `inert` attribute on content behind modals to prevent screen readers * (e.g. VoiceOver) from navigating outside the modal. Inert removes elements from * the accessibility tree so focus stays trapped.. */ export declare function applyInert(target: string): void; export declare function removeInert(target: string): void;