/** * MemoryStack React Context * Provides app-wide access to the MemoryStack client */ import type { MemoryStackClient } from '../client'; export interface MemoryStackContextValue { /** The MemoryStack client instance */ client: MemoryStackClient | null; /** Whether the device is currently online */ isOnline: boolean; /** Number of pending offline operations */ pendingOperations: number; /** Manually trigger sync of pending operations */ syncPending: () => Promise; /** Whether the SDK is initialized */ isInitialized: boolean; } /** * React Context for MemoryStack * Access via useMemoryStack hook */ export declare const MemoryStackContext: import("react").Context; //# sourceMappingURL=MemoryStackContext.d.ts.map