/** * Expo SecureStore adapter (stub) * * This is a placeholder that will be replaced at runtime if expo-secure-store is installed. * The actual implementation would use expo-secure-store. */ import type { SecureStorageAdapter, SecureStorageOptions, StorageResult } from "./types"; export declare class ExpoSecureStorage implements SecureStorageAdapter { readonly name = "expo-secure-store-stub"; readonly available: boolean; constructor(_options?: SecureStorageOptions); get(_key: string): Promise>; set(_key: string, _value: string): Promise>; delete(_key: string): Promise>; has(_key: string): Promise>; clear(): Promise>; } //# sourceMappingURL=expo-secure-store.d.ts.map