import { PitchValue, Segment } from '@musical-patterns/material'; import { ContourWhole } from '@musical-patterns/utilities'; interface BreatherSegments { doubleFallWhichIsGoodIntroForJig: Segment; spring: Segment; springAltNiceAsABreatherToABreather: Segment; summer: Segment; varietyQuiteTheReveille: Segment; } interface BreatherContourWholes { doubleFall: ContourWhole; doubleRest: ContourWhole; rest: ContourWhole; spring: ContourWhole; springAlt: ContourWhole; summer: ContourWhole; variety: ContourWhole; } export { BreatherSegments, BreatherContourWholes, };