import type SoundCloud from '../SoundCloud.js'; import { type ArtworkImageUrls } from './Entity.js'; import Set from './Set.js'; import User from './User.js'; export default class SystemPlaylist extends Set { static type: string; isPublic?: boolean; playlistType?: 'artistStation' | 'playlist' | string | null; apiInfo: { urn?: string | null; queryUrn?: string | null; }; artwork: { original?: ArtworkImageUrls; calculated?: ArtworkImageUrls; }; madeFor?: User; lastUpdated?: string | null; texts: { title: { full?: string | null; short?: string | null; }; description: { full?: string | null; short?: string | null; }; }; trackCount: number; constructor(json: any, client: SoundCloud); protected getFullPlaylist(): Promise; } //# sourceMappingURL=SystemPlaylist.d.ts.map