import { Session, type BaseCreateCtx } from './session.base'; /** * Represents an MCP session created from a verified authorization. * The session holds user identity, claims, and authorized entities (apps, tools, resources). */ export declare class McpSession extends Session { readonly mode = "mcp"; constructor(ctx: BaseCreateCtx); getToken(): Promise | string; } //# sourceMappingURL=session.mcp.d.ts.map