/** * Iterate over an object graph, and for all string properties, search for a string, * and replace it with another string */ export declare function deepStringReplace(obj: Record, stringOrRegex: string | RegExp, replacement: string): Record;