/**
 * ** Interface for generic replacer.
 */
export interface Replacer<T> {
    searchValue: T;
    replaceValue: T;
}
