import { IIamExtensionAdapter, Identity } from '@5minds/processcube_engine_sdk'; import { IamService, IdentityService } from '../../Iam'; export declare class IamExtensionAdapter implements IIamExtensionAdapter { private readonly iamService; private readonly identityService; private readonly logger; constructor(iamService: IamService, identityService: IdentityService); ensureHasClaim(identity: Identity, claimName: string, claimValue?: any): Promise; getIdentity(token: string, userId?: string): Promise; }