import type { Hono } from 'hono'; import type { Store } from '../../../store'; /** * Installs a single catch-all API route handler that dynamically looks up routes from Store. * * This enables hot-reload for API functions and mock server toggle without restart. */ export declare function installApiRoutes(router: Hono, store: Store): void; //# sourceMappingURL=api-routes.d.ts.map