import { type Mem0Accessor } from '../../accessor/mem0.ts'; import type { PathSpec } from '../../types.ts'; /** Fetch all memories for the configured scope, following pagination. */ export declare function getAllMemories(accessor: Mem0Accessor): Promise[]>; export declare function getMemory(accessor: Mem0Accessor, memoryId: string, path: PathSpec): Promise>; /** Semantic search within the configured scope. */ export declare function searchMemories(accessor: Mem0Accessor, query: string, topK: number, threshold: number): Promise[]>; //# sourceMappingURL=client.d.ts.map