import { BaseDb } from '../interfaces/base-db.js'; import { Chunk, EmbeddedChunk } from '../global/types.js'; export declare class QdrantDb implements BaseDb { private readonly debug; private static readonly QDRANT_INSERT_CHUNK_SIZE; private readonly client; private readonly clusterName; constructor({ apiKey, url, clusterName }: { apiKey: string; url: string; clusterName: string; }); init({ dimensions }: { dimensions: number; }): Promise; insertChunks(chunks: EmbeddedChunk[]): Promise; similaritySearch(query: number[], k: number): Promise; getVectorCount(): Promise; deleteKeys(uniqueLoaderId: string): Promise; reset(): Promise; }