import { StringifiedKey } from '../interfaces'; /** * Creates an array of own enumerable string keyed-value pairs for `object` which can be consumed by `fromPairs`. * * Differences from lodash: * - does not give any special consideration for arguments objects, strings, or prototype objects (e.g. many will have `'length'` in the returned array) * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 4,911 bytes * - Micro-dash: 175 bytes */ export declare function toPairs(object: T): Array<[StringifiedKey, T[keyof T]]>;