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 MemoryCollection extends $dara.Model { createdAt?: string; description?: string; embedderConfig?: EmbedderConfig; enableConversationHistory?: boolean; enableConversationState?: boolean; executionRoleArn?: string; lastUpdatedAt?: string; llmConfig?: LLMConfig; memoryCollectionId?: string; memoryCollectionName?: string; networkConfiguration?: NetworkConfiguration; vectorStoreConfig?: VectorStoreConfig; workspaceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }