import { BaseMemory, InputValues, MemoryVariables, OutputValues } from "./base.js"; export interface BufferWindowMemoryInput { humanPrefix: string; aiPrefix: string; memoryKey: string; k: number; } export declare class BufferWindowMemory extends BaseMemory implements BufferWindowMemoryInput { humanPrefix: string; aiPrefix: string; memoryKey: string; buffer: string[]; k: number; constructor(fields?: Partial); loadMemoryVariables(_values: InputValues): Promise; saveContext(inputValues: InputValues, outputValues: Promise): Promise; }