import { InstrumentType } from './Instrument'; export interface BackingTrack { 'instrument-type': InstrumentType | 'drums' | 'vocals' | string; label: string; slug: string; url: string; }