import NextValue from "./NextValue"; /** * Finds the next value in the object based on the given segment. * @param {NextValue} result - The result object containing the current value, current path, and full path. * @param {string} segment - The segment of the path to process. * @returns {NextValue} The updated result object with the next value, current path, and full path. */ declare const findNextValue: (result: NextValue, segment: string) => NextValue; export default findNextValue;