/** * Searches for a value in an array in data that matches a value given * in config. A cutoff index can be provided in config if the search * should stop after a certain number of entries. An index to ignore * can also be provided. * @param {object} config The config of the operation. * @param {object} data A page's formData. * @returns The index of the matching value if one exists, or null. */ declare const getIndexOfMatchingValueIn: (config: any, data: any) => any; export default getIndexOfMatchingValueIn;