/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ declare class LongTermMemory { store(key: string, value: string): Promise; retrieve(key: string): Promise; } export declare const longTermMemory: LongTermMemory; export {}; //# sourceMappingURL=long-term-memory.d.ts.map