import { IStorage } from "@inrupt/solid-client-authn-core"; export default class InsecureStorageReactNative implements IStorage { get storage(): import("@react-native-async-storage/async-storage").AsyncStorageStatic; get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; }