import { ListKeyOptions, RecordManager, UpdateOptions } from "./base.js"; interface MemoryRecord { updatedAt: number; groupId: string | null; } export declare class InMemoryRecordManager extends RecordManager { lc_namespace: string[]; records: Map; constructor(); createSchema(): Promise; getTime(): Promise; update(keys: string[], updateOptions?: UpdateOptions): Promise; exists(keys: string[]): Promise; listKeys(options?: ListKeyOptions): Promise; deleteKeys(keys: string[]): Promise; } export {};