import type { CanonicalGetMemoryResult, GetMemoryOptions } from "@devflow-tools/sdk"; export declare function showMemory(skipServer?: boolean, source?: string): Promise; export declare function queryMemory(options?: GetMemoryOptions & { skipServer?: boolean; }): Promise; export declare function setMemory(key: string, value: string, skipServer?: boolean): Promise; export declare function reviewCandidates(skipServer?: boolean): Promise; export declare function backfillObservationVectors(options?: { projectRoot?: string; batchSize?: number; onProgress?: (progress: { processed: number; remaining: number; lastId?: string; }) => void; }): Promise<{ processed: number; remaining: number; }>; export declare function reviewMemories(): Promise; //# sourceMappingURL=memory.d.ts.map