import { JSONSchema } from '../interfaces'; export declare class FindReplaceAllService { /** * Does deep replace when it finds the occurance in an immutable List and Map * uses schema to skip disabled properties * * @param {List | Map | Object} diffHtml - TODO: describe */ findReplaceInImmutable(immutable: any, schema: JSONSchema, find: string, replace: string, exact?: boolean, diffHtml?: Array | Object): { replaced: any; diffHtml: Array | Object; }; }