import { TonalMutationLexeme } from '../change/lexeme';
/** Mutates the initial of the following syllable. */
export declare function mutateInitialOfFollowingSyllable(word: string): TonalMutationLexeme;
/** Mutates the final of the preceding syllable. */
export declare function mutateFinalConsonantOfPrecedingSyllable(word: string): TonalMutationLexeme;
/** Mutates the final of the preceding word. */
export declare function mutateFinalOfPrecedingWord(preceding: string, following: string): import("./phraseme").TonalMutationPhraseme;
