import { InternalIdentity as Identity } from '../../Contracts/InternalDataModels/Identity'; export declare const claimConfigs: Record; /** * Used for integrationtests only. */ export declare class IamServiceMock { private config; constructor(); getAuthorityAddress(): string; ensureHasClaim(identity: Identity, claimName: string, claimValue?: any, excludeAdmins?: boolean): Promise; checkIfIdentityHasClaim(identity: Identity, claimName: string, claimValue?: any, excludeAdmins?: boolean): Promise; checkIfUserIsSuperAdmin(identity: Identity): Promise; checkIfTokenIsInternalToken(token: string): boolean; checkIfTokenIsRootAccessToken(token: string): boolean; private throwForbiddenError; }