import type * as SecureStore from "expo-secure-store"; import type { LoadState, State } from "../types/MobileStorage"; export default class ExpoSecureStoreLocal { static loadState(key: string, storage: typeof SecureStore, options?: SecureStore.SecureStoreOptions): Promise; static saveState(key: string, state: State, storage: typeof SecureStore, options?: SecureStore.SecureStoreOptions): Promise; }