import { DiscogsImage, DiscogsImageInterface } from './discogs-image'; import { DiscogsReleaseArtist, DiscogsReleaseArtistInterface } from './discogs-release-artist'; import { DiscogsReleaseVideo, DiscogsReleaseVideoInterface } from './discogs-release-video'; import { DiscogsReleaseTrack, DiscogsReleaseTrackInterface } from './discogs-release-track'; export interface DiscogsMasterInterface { title: string; id: number; artists?: DiscogsReleaseArtistInterface[]; thumb?: string; country?: string; date_added: string; date_changed: string; genres?: string[]; images?: DiscogsImageInterface[]; main_release?: number; main_release_url?: string; versions_url?: string; released: string; resource_url: string; tracklist?: DiscogsReleaseTrackInterface[]; uri: string; videos?: DiscogsReleaseVideoInterface[]; year?: number; } export declare class DiscogsMaster implements DiscogsMasterInterface { title: string; id: number; artists?: DiscogsReleaseArtist[]; thumb?: string; country?: string; date_added: string; date_changed: string; genres?: string[]; images?: DiscogsImage[]; main_release?: number; main_release_url?: string; versions_url?: string; released: string; resource_url: string; tracklist?: DiscogsReleaseTrack[]; uri: string; videos?: DiscogsReleaseVideo[]; year?: number; }