import { MultiDbManager } from '../core/multi-db-manager'; /** * API for V-Dimension: Vectors * Provides access to embeddings, importance scores, and navigation metadata. */ export declare class VectorApi { private dbManager; constructor(dbManager: MultiDbManager); /** * Gets embedding for an entity. */ getEmbedding(dimension: 'X' | 'Y' | 'Z' | 'W' | 'T', entityId: string, pluginId: string, model: string): Promise; /** * Gets importance score for an entity. */ getImportanceScore(dimension: 'X' | 'Y' | 'Z' | 'W' | 'T', entityId: string, pluginId: string): Promise; /** * Gets navigation metadata for an entity. */ getNavigationMetadata(dimension: 'X' | 'Y' | 'Z' | 'W' | 'T', entityId: string, pluginId: string): Promise; /** * Gets all entry points for a dimension. */ getEntryPoints(dimension: 'X' | 'Y' | 'Z' | 'W' | 'T', pluginId: string): Promise; } //# sourceMappingURL=vector-api.d.ts.map