import type { TypedQueryClient } from "../../generated/storage-kit/index.js"; import { type RecallOptions, type RecallResponse } from "../../lib/recall.js"; import type { SearchOptions } from "../../lib/search.js"; interface MetadataHit { session_id: string; snippet: string; signal: string; } /** Session-metadata / graph hits over the shared cloud (ILIKE over metadata fields). */ export declare function cloudMetadataAndGraphHits(terms: string[], query: string, opts: SearchOptions, limit: number, client: TypedQueryClient): Promise; /** Natural-language recall over the shared cloud (see module docstring). */ export declare function cloudRecallSessions(query: string, opts?: RecallOptions, client?: TypedQueryClient): Promise; export {}; //# sourceMappingURL=recall.d.ts.map