/** * Token management routes — `/tokens` * * Exposes CRUD for consumer MCP tokens. Requires standard API-key auth * (`authenticate` middleware). All operations are scoped to the `userId` * resolved from `req.irantiAuth.userId` — callers only see their own tokens. * * Routes: * POST /tokens — mint a new consumer MCP token * GET /tokens — list tokens for the current user * DELETE /tokens/:id — revoke a token by id * * Response for POST includes `mcpUrl` — the full URL to paste into Claude.ai * or ChatGPT as an MCP connector. The `rawSecret` field is shown once only. */ import { Router } from 'express'; export declare const tokensRouter: Router; //# sourceMappingURL=tokens.d.ts.map