import type SoundCloud from '../SoundCloud.js'; import Entity from './Entity.js'; export default class Publisher extends Entity { static type: string; id?: number; artist?: string | null; albumTitle?: string | null; containsMusic?: boolean; UPCOrEAN?: string | null; ISRC?: string | null; isExplicit?: boolean; releaseTitle?: string | null; copyrightText: { general: { p?: string | null; c?: string | null; }; display: { p?: string | null; c?: string | null; }; }; apiInfo: { urn?: string | null; }; constructor(json: any, client: SoundCloud); } //# sourceMappingURL=Publisher.d.ts.map