/** * Helper method to map paths matching a certain scope. * @param {Array} paths - the JSON paths to map. * @param {string} scopePath - the JSON path to scope the mapping to. * @param {(Array)} scopedMapper - Map function which receives the paths in the scope and returns the resolved paths. * @returns {string} - the paths, including the once mapped by the scoped mapper. Notice the order is kept. */ export declare function umbScopeMapperForJsonPaths(paths: Array, scopePath: string, scopedMapper: (scopedPaths: Array) => Promise>): Promise>;