'use strict'; import type { Synchronizable } from './types'; export function isSynchronizable( value: unknown ): value is Synchronizable { 'worklet'; return ( typeof value === 'object' && value !== null && !!(value as Record).__synchronizableRef ); }