import { InternalIdentity as Identity } from '../../Contracts/index';
import { GetIdentityParams, IdentityService } from './IdentityService';
/**
 * Used for integrationtests only.
 */
export declare class IdentityServiceMock extends IdentityService {
    initialize(jsonWebToken?: any, mock?: boolean): void;
    getIdentity(params: GetIdentityParams): Promise<Identity>;
    protected decodeToken(token: any): any;
}
