import { Identity } from '@5minds/processcube_engine_sdk';
export type InternalIdentity = Identity & {
    /**
     * Optional. A list of claims granted to the identity.
     */
    claims?: {
        [claimName: string]: any;
    };
    originUserId?: string;
    /**
     * Optional. The name of the user to which this identiy belongs.
     */
    userName?: string;
    /**
     * Optional. The email address of the user to which this identiy belongs.
     */
    userEmail?: string;
};
