'use strict'; export function isSharedValue(value) { 'worklet'; // We cannot use `in` operator here because `value` could be a HostObject and therefore we cast. return (value === null || value === void 0 ? void 0 : value._isReanimatedSharedValue) === true; } //# sourceMappingURL=isSharedValue.js.map