import type { McpAuthModuleOptions } from '../interfaces/auth-module-options.interface'; import type { TokenPayload, TokenResponse } from '../interfaces/oauth-types.interface'; export declare const MCP_AUTH_OPTIONS: unique symbol; export declare class JwtTokenService { private readonly options; constructor(options: McpAuthModuleOptions); generateTokenPair(userId: string, clientId: string, scope?: string, resource?: string): TokenResponse; validateToken(token: string): TokenPayload; } //# sourceMappingURL=jwt-token.service.d.ts.map