import type { AsyncStorageStatic } from "@react-native-async-storage/async-storage"; import type { LoadState, State } from "../types/MobileStorage"; export default class AsyncStorageLocal { static loadState(key: string, storage: AsyncStorageStatic): Promise; static saveState(key: string, state: State, storage: AsyncStorageStatic): Promise; }