import * as $dara from '@darabonba/typescript'; import { EmbedderConfig } from "./EmbedderConfig"; import { LLMConfig } from "./Llmconfig"; import { NetworkConfiguration } from "./NetworkConfiguration"; import { VectorStoreConfig } from "./VectorStoreConfig"; export declare class UpdateMemoryCollectionInput extends $dara.Model { description?: string; embedderConfig?: EmbedderConfig; enableConversationHistory?: boolean; enableConversationState?: boolean; executionRoleArn?: string; llmConfig?: LLMConfig; networkConfiguration?: NetworkConfiguration; vectorStoreConfig?: VectorStoreConfig; workspaceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }