import type { NumericAdjunct } from "../../adjunct/numeric.js";
import { type AffixDegree } from "../../affix/index.js";
import { type ReferentList } from "../../referential/index.js";
/** Slot III. */
export type SlotIII = string | NumericAdjunct | ReferentList | {
    /** The degree of the affix. */
    readonly degree: AffixDegree;
    /** The consonantal form of the affix. */
    readonly cs: string | number | bigint;
};
