/** * Raw events routes — GET & POST /api/raw-events, GET /api/raw-events/status, * POST /api/claude-hooks, POST /api/codex-hooks. */ import type { MemoryStore, RawEventSweeper } from "@codemem/core"; import { Hono } from "hono"; type StoreFactory = () => MemoryStore; export declare function rawEventsRoutes(getStore: StoreFactory, sweeper?: RawEventSweeper | null): Hono; export {}; //# sourceMappingURL=raw-events.d.ts.map