/** * Retrieves the value from the source based on the provided key * @param {unknown} source The source from which to retrieve the value. * @param {string|number} key The key to look up in the source object. * @param {string} currentPath The current path being traversed in the object hierarchy. * @param {string} fullPath The full path to the current key being evaluated. * @returns {unknown} The value retrieved from the source object. */ declare const getValue: (source: unknown, key: string, currentPath: string, fullPath: string) => unknown; export default getValue;