import { AddMemoryOptions, SearchMemoryOptions, GetAllMemoryOptions, MemoryClient, Memory } from 'mem0ai';
import { InputValues, MemoryVariables, OutputValues } from '@langchain/core/memory';
import { HumanMessage, BaseMessage } from '@langchain/core/messages';
import { BaseChatMemory, BaseChatMemoryInput } from '@langchain/community/memory/chat_memory';

/**
 * Extracts and formats memory content into a system prompt
 * @param memory Array of Memory objects from mem0ai
 * @returns Formatted system prompt string
 */
declare const mem0MemoryContextToSystemPrompt: (memory: Memory[]) => string;
/**
 * Condenses memory content into a single HumanMessage with context
 * @param memory Array of Memory objects from mem0ai
 * @returns HumanMessage containing formatted memory context
 */
declare const condenseMem0MemoryIntoHumanMessage: (memory: Memory[]) => HumanMessage;
/**
 * Converts Mem0 memories to a list of BaseMessages
 * @param memories Array of Memory objects from mem0ai
 * @returns Array of BaseMessage objects
 */
declare const mem0MemoryToMessages: (memories: Memory[]) => BaseMessage[];
/**
 * Interface defining the structure of the input data for the Mem0Client
 */
interface ClientOptions {
    apiKey: string;
    host?: string;
}
/**
 * Interface defining the structure of the input data for the Mem0Memory
 * class. It includes properties like memoryKey, sessionId, and apiKey.
 */
interface Mem0MemoryInput extends BaseChatMemoryInput {
    sessionId: string;
    apiKey: string;
    humanPrefix?: string;
    aiPrefix?: string;
    memoryOptions?: AddMemoryOptions | SearchMemoryOptions | GetAllMemoryOptions;
    mem0Options?: ClientOptions;
    separateMessages?: boolean;
}
/**
 * Class used to manage the memory of a chat session using the Mem0 service.
 * It handles loading and saving chat history, and provides methods to format
 * the memory content for use in chat models.
 *
 * @example
 * ```typescript
 * const memory = new Mem0Memory({
 *   sessionId: "user123" // or use userId inside of memoryOptions (recommended),
 *   apiKey: "your-api-key",
 *   memoryOptions: {
 *     userId: "user123",
 *     runId: "run123"
 *   },
 * });
 *
 * // Use with a chat model
 * const model = new ChatOpenAI({
 *   modelName: "gpt-3.5-turbo",
 *   temperature: 0,
 * });
 *
 * const chain = new ConversationChain({ llm: model, memory });
 * ```
 */
declare class Mem0Memory extends BaseChatMemory implements Mem0MemoryInput {
    memoryKey: string;
    apiKey: string;
    sessionId: string;
    humanPrefix: string;
    aiPrefix: string;
    mem0Client: InstanceType<typeof MemoryClient>;
    memoryOptions: AddMemoryOptions | SearchMemoryOptions | GetAllMemoryOptions;
    mem0Options: ClientOptions;
    separateMessages?: boolean;
    constructor(fields: Mem0MemoryInput);
    get memoryKeys(): string[];
    /**
     * Retrieves memories from the Mem0 service and formats them for use
     * @param values Input values containing optional search query
     * @returns Promise resolving to formatted memory variables
     */
    loadMemoryVariables(values: InputValues): Promise<MemoryVariables>;
    /**
     * Saves the current conversation context to the Mem0 service
     * @param inputValues Input messages to be saved
     * @param outputValues Output messages to be saved
     * @returns Promise resolving when the context has been saved
     */
    saveContext(inputValues: InputValues, outputValues: OutputValues): Promise<void>;
    /**
     * Clears all memories for the current session
     * @returns Promise resolving when memories have been cleared
     */
    clear(): Promise<void>;
}

export { type ClientOptions, Mem0Memory, type Mem0MemoryInput, condenseMem0MemoryIntoHumanMessage, mem0MemoryContextToSystemPrompt, mem0MemoryToMessages };
