declare function NOOP(..._args: unknown[]): void; /** * This is used to keep multiple browser tabs in sync, therefore only needed on web * On native platforms, we omit this syncing logic by setting this to mock implementation. */ declare const InstanceSync: { shouldBeUsed: boolean; init: typeof NOOP; setItem: typeof NOOP; removeItem: typeof NOOP; removeItems: typeof NOOP; multiMerge: typeof NOOP; multiSet: typeof NOOP; mergeItem: typeof NOOP; clear: void>(callback: T) => Promise; }; export default InstanceSync;