/** * React Native Keychain adapter (stub) * * This is a placeholder that will be replaced at runtime if react-native-keychain is installed. * The actual implementation would use react-native-keychain. */ import type { SecureStorageAdapter, SecureStorageOptions, StorageResult } from "./types"; export declare class ReactNativeKeychainStorage implements SecureStorageAdapter { readonly name = "react-native-keychain-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=rn-keychain.d.ts.map