import type { HippoMemoryConfig } from "../config.js"; import type { MemoryService } from "../memory-service.js"; import type { NotifyFn } from "./session-start.js"; export interface SessionShutdownDeps { service: MemoryService; config: HippoMemoryConfig; notify: NotifyFn; } export type SessionShutdownHook = (event: unknown, ctx: unknown) => Promise; export declare function createSessionShutdownHook(deps: SessionShutdownDeps): SessionShutdownHook; //# sourceMappingURL=session-shutdown.d.ts.map