import { type Case } from "../../formative/slot-9/case.js";
import { type SuppletiveAdjunctType } from "./type.js";
export * from "./type.js";
/** A suppletive adjunct. */
export type SuppletiveAdjunct = {
    /** The type of the adjunct. */
    readonly type: SuppletiveAdjunctType;
    /** The case of the adjunct. */
    readonly case: Case;
};
/**
 * Converts a suppletive adjunct into Ithkuil.
 *
 * @param adjunct The adjunct to be converted.
 * @returns Romanized Ithkuilic text representing the adjunct.
 */
export declare function suppletiveAdjunctToIthkuil(adjunct: SuppletiveAdjunct): string;
