export interface UseMemoryReturn { memory: { exists: boolean; content: string; } | null; isLoading: boolean; error: Error | null; saveMemory: (content: string) => Promise; refetch: () => Promise; } /** * Hook for shared memory (no agent scope). */ export declare function useMemory(): UseMemoryReturn; export interface UseAgentMemoryReturn { memory: { exists: boolean; content: string; } | null; isLoading: boolean; error: Error | null; saveMemory: (content: string) => Promise; refetch: () => Promise; } /** * Hook for agent-specific memory. * @param agentName The agent whose private memory to access. */ export declare function useAgentMemory(agentName: string): UseAgentMemoryReturn; //# sourceMappingURL=use-memory.d.ts.map