export declare class Replacer { private value; private _substitutions; get substitutions(): number; private _replacements; get replacements(): number; constructor(value?: string); replace(regex: RegExp, strategy: string | ((...args: string[]) => string)): this; valueOf(): string; toString(): string; }