/** * Alternative to `useModal` that does not use `useModalOverlay`. * * Provides modal behavior (focus trapping, outside interaction blocking, dismiss handling) * without preventing scroll. This is useful on mobile Safari where `usePreventScroll` (used in implementation of useModalOverlay) * causes the virtual keyboard to cover focused inputs. */ export declare const useModalWithoutPreventScroll: (isOpen: boolean) => { ref: import("react").RefObject; modalProps: import("@react-types/shared").DOMAttributes; }; //# sourceMappingURL=useModalWithoutPreventScroll.d.ts.map