export default normalize; /** * Normalize a collection of rows with the given headers. * * @param {Array} rows * @param {Array} headers * @returns {object} */ declare function normalize(rows: Array, headers: Array, prevState?: {}): object;