export interface CharacterProps { id: string; resourceName: string; displayName: string; assets: Assets; } export interface Assets { avatarImg?: string; avatarImgOriginal?: string; rpmModelUri?: string; rpmImageUriPortrait?: string; rpmImageUriPosture?: string; } export declare class Character { readonly id: string; readonly resourceName: string; readonly displayName: string; readonly assets: Assets; constructor(props: CharacterProps); getId(): string; getResourceName(): string; getDisplayName(): string; getAssets(): Assets; }