import { Router } from 'express'; import { ServerConfig } from '../types'; /** * Create /account route (protected endpoint example) * * GET /account * Headers: Authorization: Bearer * Response: { did, scope, issuer, authenticated, issuedAt, expiresAt } */ export declare function createAccountRoute(config: ServerConfig): Router; //# sourceMappingURL=account.d.ts.map