import type { AuthenticatedSession, AuthParameters } from './types/authenticate'; import type { OpenIdAuthContext } from './types/context'; interface AuthContext { context: Omit; auth: AuthParameters; } type AuthenticationArgs = { jwt: string; } & AuthContext; export declare const authenticateSession: ({ jwt, context, auth }: AuthenticationArgs) => Promise>; export {};