/** * Config routes — GET /api/config, POST /api/config. * * Ports the user-facing config read/write path from Python's * codemem/viewer_routes/config.py, scoped to the TS runtime's current needs. */ import { type RawEventSweeper } from "@codemem/core"; import { Hono } from "hono"; export interface ConfigRouteOptions { getSweeper?: () => RawEventSweeper | null; } export declare function configRoutes(opts?: ConfigRouteOptions): Hono; //# sourceMappingURL=config.d.ts.map