import { AsyncLocalStorage } from 'async_hooks'; import { McpAuthContext, DBTokenResponse } from './types.js'; export declare const asyncLocalStorage: AsyncLocalStorage; /** * Get the current authentication context without a specific service */ export declare function getAuthContext(): McpAuthContext; /** * Get the current authentication context with a specific service token */ export declare function getAuthContext(service: string): { token: DBTokenResponse | null; context: McpAuthContext; accessToken?: string; profileId?: string; refreshToken?: string; }; //# sourceMappingURL=context.d.ts.map