import { RAG, HyperDBAdapter, type EmbeddingFunction } from "@qvac/rag"; export declare const DEFAULT_WORKSPACE = "default"; export declare function hasRagWorkspaceStorage(workspace?: string): boolean; export declare function getRagDbAdapter(workspace?: string): Promise; export declare function getRagInstance(modelId: string, embeddingFunction: EmbeddingFunction, workspace?: string): Promise; export declare function closeRagInstance(workspace?: string): Promise; export declare function closeAllRagInstances(): Promise; export interface RagWorkspaceInfo { name: string; open: boolean; } export declare function listWorkspaces(): RagWorkspaceInfo[]; export declare function isWorkspaceLoaded(workspace: string): boolean; export declare function deleteWorkspace(workspace: string): Promise; //# sourceMappingURL=rag-workspace-manager.d.ts.map