import { IStorage } from "@inrupt/solid-client-authn-core"; export default class SecureStorageReactNative implements IStorage { get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; }