import type { UserWithProfile as UserWithProfileInterface } from '@enonic-types/lib-auth'; import type { UserConstructorParams } from './User'; import { User } from './User'; export declare interface UserWithProfileConstructorParams extends UserConstructorParams { profile?: Record; } export declare class UserWithProfile extends User implements UserWithProfileInterface { profile?: Record; constructor({ displayName, key, modifiedTime, email, idProvider, login, disabled, profile }: UserWithProfileConstructorParams); }