import type SoundCloud from '../SoundCloud.js'; import Entity, { type AvatarImageUrls } from './Entity.js'; export default class User extends Entity { static type: string; id?: number; names: { full?: string | null; first?: string | null; last?: string | null; username?: string | null; }; lastModified?: string | null; permalink: { basic?: string | null; full?: string | null; }; apiInfo: { uri?: string | null; urn?: string | null; }; location: { city?: string | null; country?: string | null; }; isVerified?: boolean; avatar?: AvatarImageUrls; badges: { pro?: boolean; proUnlimited?: boolean; verified?: boolean; }; constructor(json: any, client: SoundCloud); } //# sourceMappingURL=User.d.ts.map