/** * Helper method to replace the start of a JSON Path with another JSON Path. * @param {string} path - the JSON path to transform. * @param {string} startFrom - the path prefix to match against. * @param {string} startTo - the path prefix to replace it with. * @returns {string} the transformed path, or undefined if `path` does not start with `startFrom`. */ export declare function ReplaceStartOfPath(path: string, startFrom: string, startTo: string): string | undefined;