import type SoundCloud from '../SoundCloud.js'; import { type ArtworkImageUrls } from './Entity.js'; import Set from './Set.js'; export default class Playlist extends Set { static type: string; isPublic?: boolean; apiInfo: { uri?: string | null; }; artwork?: ArtworkImageUrls; setType?: string | null; duration?: number; dates: { created?: string | null; published?: string | null; modified?: string | null; display?: string | null; }; sharingInfo: { shareability?: string | null; secretToken?: string | null; }; texts: { title?: string | null; description?: string | null; }; trackCount?: number; socialInfo: { likesCount?: number; repostsCount?: number; managedByFeeds?: boolean; }; constructor(json: any, client: SoundCloud); protected getFullPlaylist(): Promise; } //# sourceMappingURL=Playlist.d.ts.map