import { AuthenticationService } from './authentication.service'; import { UserIdentity } from '../types'; export declare class UserIdentityService { private authService; constructor(authService: AuthenticationService); get user(): UserIdentity; }