import type SoundCloud from '../SoundCloud.js'; import Entity from './Entity.js'; import type Track from './Track.js'; import User from './User.js'; export default abstract class Set extends Entity { #private; id?: ID; user?: User; permalink: { basic?: string | null; full?: string | null; }; constructor(json: any, client: SoundCloud); getTracks(options?: { offset?: number; limit?: number; }): Promise; protected abstract getFullPlaylist(): Promise | null>; } //# sourceMappingURL=Set.d.ts.map