import { Hono } from "hono"; import type { AppEnv } from "../app"; import type { ApiDeps } from "../types/api-deps"; /** * Paired-device management (C5 / mobile U10). * * Revoking a device previously meant rotating the shared API key, which * de-authenticated every other device at the same time. These routes make * revocation per-device and give the client something to display: which devices * exist, what each may do, and when it was last seen. * * No response ever includes a device token or its hash. A management surface * has no reason to hand back a credential, and this endpoint is exactly where * an accidental echo would be most damaging. */ export declare const createDeviceRoutes: (deps: Pick) => Hono; //# sourceMappingURL=devices.routes.d.ts.map