import type SoundCloud from '../SoundCloud.js'; import Playlist from './Playlist.js'; export default class Album extends Playlist { static type: string; sharingInfo: { shareability?: string | null; embeddableBy?: string | null; secretToken?: string | null; }; dates: { created?: string | null; published?: string | null; modified?: string | null; display?: string | null; release?: string | null; }; genre?: string | null; label?: string | null; license?: string | null; purchaseInfo: { title?: string | null; url?: string | null; }; tags?: string | null; constructor(json: any, client: SoundCloud); } //# sourceMappingURL=Album.d.ts.map