/** * Platform detection and automatic adapter selection */ import type { SecureStorageAdapter, SecureStorageOptions } from "./types"; /** * Detected platform */ export type Platform = "react-native" | "expo" | "web" | "node" | "unknown"; /** * Detect the current platform */ export declare function detectPlatform(): Platform; /** * Create the best available secure storage adapter for the current platform */ export declare function createSecureStorage(options?: SecureStorageOptions): Promise; /** * Check if secure storage is available on this platform */ export declare function isSecureStorageAvailable(): boolean; //# sourceMappingURL=detect.d.ts.map