/**
 * @description The BasicAffixKind type defines the basic types of affixes.
 * @export
 */
export type BasicAffixKind = 'prefix' | 'suffix' | 'infix' | 'circumfix';
