import type { ActionEntry } from "../agent/production-agent.js"; export declare function listIntegrationMemory(scopeId?: string): Promise<{ name: string; path: string; updatedAt: number; size: number; }[]>; export declare function rememberForIntegrationScope(input: { name: string; description: string; content: string; }, scopeId?: string): Promise<{ name: string; description: string; }>; export declare function forgetIntegrationMemory(input: { name: string; }, scopeId?: string): Promise<{ name: string; deleted: boolean; }>; export declare function loadIntegrationMemoryPrompt(scopeId: string | undefined): Promise; export declare function integrationMemoryActions(): Record; //# sourceMappingURL=integration-memory.d.ts.map