import { N8nMemory } from './integrations/n8n-memory'; export declare function chatThreadId(agentId: string, userId?: string): string; export declare class AgentTestChatService { private readonly n8nMemory; constructor(n8nMemory: N8nMemory); getTestChatMessages(agentId: string, userId: string): Promise; clearTestChatMessages(agentId: string, userId: string): Promise; clearAllTestChatMessages(agentId: string): Promise; }