/** * iOS detection. Lazy — never touches `navigator` / `window` at import time, * so this module is safe to import in React Native / Expo / Hermes builds * even though the function itself is only meaningful in a browser. */ declare function isIOS(): boolean; export { isIOS };