import { type Affix, type AffixualAdjunct, type ModularAdjunct, type PartialFormative } from "../index.js";
/**
 * Merges affixual and modular adjuncts into a formative.
 *
 * @param adjuncts The adjunct to be merged into the formative.
 * @param formative The original formative.
 * @returns The newly merged formative.
 */
export declare function mergeAdjunctsAndFormative(adjuncts: (AffixualAdjunct | ModularAdjunct)[], formative: PartialFormative): PartialFormative & {
    readonly slotXIAffixes: readonly Affix[];
};
