import { DiscogsReleaseExtraArtist, DiscogsReleaseExtraArtistInterface } from './discogs-release-extra-artist'; export interface DiscogsReleaseTrackInterface { duration?: string; position?: string; title: string; type_?: string; extraartists?: DiscogsReleaseExtraArtistInterface[]; } export declare class DiscogsReleaseTrack implements DiscogsReleaseTrackInterface { duration?: string; position?: string; title: string; type_?: string; extraartists?: DiscogsReleaseExtraArtist[]; }