import type { SectionConfig, Tag } from './common'; export interface LevelledSkill extends Tag { level: 1 | 2 | 3 | 4 | 5; } export interface SkillSet { title: string; skills: SkillType[]; } export interface SkillsSection { skillSets: (SkillSet | SkillSet)[]; config: SectionConfig; }