import * as $dara from '@darabonba/typescript'; export declare class VectorStoreConfigConfig extends $dara.Model { collectionName?: string; endpoint?: string; instanceName?: string; vectorDimension?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class VectorStoreConfigMysqlConfig extends $dara.Model { collectionName?: string; credentialName?: string; dbName?: string; host?: string; port?: number; user?: string; vectorDimension?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class VectorStoreConfig extends $dara.Model { config?: VectorStoreConfigConfig; mysqlConfig?: VectorStoreConfigMysqlConfig; provider?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }