import type { HippoMemoryConfig } from "../config.js"; import type { ErrorCapture, ToolResultLike } from "../error-capture.js"; import type { MemoryService } from "../memory-service.js"; export interface ToolResultHookDeps { service: MemoryService; config: HippoMemoryConfig; errorCapture: ErrorCapture; } export type ToolResultHook = (event: ToolResultLike, ctx: unknown) => Promise; export declare function createToolResultHook(deps: ToolResultHookDeps): ToolResultHook; //# sourceMappingURL=tool-result.d.ts.map