import { StorageAdapter } from 'fastapi-rtk/api'; import { AsyncStorageLike } from './types'; /** * AsyncStorage has no cross-instance change event (unlike the web `storage` event), so `subscribe` * is omitted here rather than faked as a no-op: callers must not rely on storage reactivity on RN. */ export declare const createAsyncStorageAdapter: (asyncStorage: AsyncStorageLike) => StorageAdapter;