/**
 * @description The SuprasegmentalAffixKind type defines the various types of suprasegmental affixes that can be used in linguistics.
 * @export
 */
export type SuprasegmentalAffixKind = 'superfix' | 'subfix' | 'suprafix';
