/** * This function retrieves the value from an array based on the provided indicies. * @param {unknown} value The value to evaluate * @param {string} indicies The indicies to evaluate in the form of '[0][1][2]...[n]' * @param {string} currentPath The current path * @param {string} path The full path * @returns {unknown} The value retrieved from the array based on the indicies. */ declare const getValueFromIndicies: (value: unknown, indicies: string, currentPath: string | undefined, path: string) => unknown; export default getValueFromIndicies;