export interface MemoryStoreConfig { name: string; type: string; description?: string; config: Record; structure?: string; retrieval?: string; } export declare function createMemoryStoreCommand(): Promise; export declare function listMemoryStoresCommand(): void; export declare function getMemoryStoreCommand(name: string): void; export declare function deleteMemoryStoreCommand(name: string): Promise; export declare function showStoreTypesCommand(): void; export declare function showStructuresCommand(): void; export declare function showRetrievalStrategiesCommand(): void; //# sourceMappingURL=memory.d.ts.map