export declare const ENTITIES_DICT: Record<string, string[][]>;
export declare const ENTITIES_MAP: Record<string, string>;
export declare const ENTITIES: string[];
/**
 * Replaces all entities in a string
 *
 * @param string The input string
 *
 * @returns A string with replaced entities
 */
export declare const replaceEntities: (string: string) => string;
