import { MastraServerCache } from './base.js'; export declare class InMemoryServerCache extends MastraServerCache { private cache; constructor(); get(key: string): Promise; set(key: string, value: unknown): Promise; listLength(key: string): Promise; listPush(key: string, value: unknown): Promise; listFromTo(key: string, from: number, to?: number): Promise; delete(key: string): Promise; clear(): Promise; } //# sourceMappingURL=inmemory.d.ts.map