import { Prop, KeyValuePairs } from '../typings/types'; interface ToPairs { (obj: Record): KeyValuePairs; } /** * Converts an object into an array of key, value arrays. Only the object's * own properties are used. * Note that the order of the output array is not guaranteed to be consistent * across different JS platforms. * * @param {Object} obj The object to extract from * @return {Array} An array of key, value arrays from the object's own properties. * @example * * toPairs({a: 1, b: 2, c: 3}); //=> [['a', 1], ['b', 2], ['c', 3]] */ declare const _default: ToPairs; export default _default;