import './config/config.default.js';
export * from 'chromadb';
import { ChromaClient } from 'chromadb';
import type { ChromaClientParams, Collection, CreateCollectionParams } from 'chromadb';
type EggChromaClientParams = ChromaClientParams & {
    collections?: CreateCollectionParams[];
};
declare module 'egg' {
    interface Application {
        chromadb: ChromaClient;
        collectionMap: Map<string, Collection>;
        getCollection: (name: keyof Record<string, Collection>) => Collection | undefined;
    }
    interface EggAppConfig {
        chromadb: EggChromaClientParams;
    }
}
