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