import { Lesson } from './Lesson'; import { Artist } from './Artist'; import { CourseType } from './CourseType'; import { PlayItemsResponse } from './util/Response'; import { Chord } from './Chord'; export interface Course { 'apple-affiliate-link'?: string; 'description-long': string; 'hero-image': string; 'mobile-listview-image'?: string; 'song-album-artwork'?: string; 'start-at'?: string; 'thumbnail-image'?: string; artists?: Artist[]; chords?: Chord[]; id: string; image: string; lessons: Lesson[]; level?: string; slug: string; title: string; type: CourseType; completed?: boolean; 'lessons-completed-percent'?: number; } export declare type GetCoursesResponse = PlayItemsResponse;