/**
 * Interface for character mapping objects used in text conversion
 */
export type ReplacementMap = {
    find: string;
    replace: string;
};
