import { UserInLeagueMetadata } from './UserInLeagueMetadata'; export declare class UserInLeague { 'userId': string; 'username': string; 'displayName': string; 'avatar': string; 'metadata': UserInLeagueMetadata; 'isOwner': boolean; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }