import * as jose from 'jose'; export { jose }; export interface EntraIdentity { oid: string; email: string; tid: string; } /** * Verify an Entra ID token (JWT) and extract identity claims. * Returns the identity on success, or throws on failure. */ export declare function verifyEntraToken(idToken: string): Promise; /** * Check whether Entra identity verification is configured on this server. */ export declare function isEntraConfigured(): boolean;