import { TokenOwnerType } from '../../auth/auth.constants'; import { UserRole } from '../../users/users.constants'; export type ClientType = 'user' | 'token'; export declare class ClientUserDto { id?: string | null; role: UserRole; type?: ClientType; ownerType?: TokenOwnerType; tokenId?: string; }