export interface EmbeddingConfig { name: string; provider: string; model: string; store: string; chunking: string; dimensions?: number; chunkSize?: number; chunkOverlap?: number; apiKey?: string; storeConfig?: Record; } export declare function createEmbeddingConfigCommand(): Promise; export declare function listEmbeddingConfigsCommand(): void; export declare function getEmbeddingConfigCommand(name: string): void; export declare function deleteEmbeddingConfigCommand(name: string): Promise; export declare function showProvidersCommand(): void; export declare function showStoresCommand(): void; //# sourceMappingURL=embeddings.d.ts.map