import * as lancedb from '@lancedb/lancedb'; export declare function getDb(dbPath: string): Promise; export declare function closeDb(dbPath: string): void; export declare function getChunksTable(db: lancedb.Connection): Promise; export declare function getFilesTable(db: lancedb.Connection): Promise; export declare function createIndexes(db: lancedb.Connection): Promise; export declare function getDbStats(db: lancedb.Connection): Promise<{ fileCount: number; chunkCount: number; }>; //# sourceMappingURL=db.d.ts.map