import type SoundCloud from '../SoundCloud.js'; import Album from './Album.js'; import Entity from './Entity.js'; import Playlist from './Playlist.js'; import SystemPlaylist from './SystemPlaylist.js'; import Track from './Track.js'; export default class PlayHistoryItem extends Entity { #private; static type: string; playedAt?: number; item: Album | Playlist | SystemPlaylist | Track | null; constructor(json: any, client: SoundCloud); } //# sourceMappingURL=PlayHistoryItem.d.ts.map