import { Chord } from './Chord'; import { LessonType } from './LessonType'; export interface GenericSkill { 'hero-image': string; 'thumbnail-image': string; duration: number; id: string; image: string; slug: string; title: string; type: LessonType; } export interface ChordSkill extends Omit { 'chord-title': string; chords: Chord[]; type: 'chord'; } export declare type SkillsObject = GenericSkill | ChordSkill; export interface SkillsList { 'chord-lessons': ChordSkill[]; 'techniques-lessons': GenericSkill[]; 'exercises-lessons': GenericSkill[]; 'skills-course': GenericSkill[]; }