/** * Returns a iterable array of tuples from an input object. */ declare const getMappedArray: (obj: Object) => [string, any][]; export default getMappedArray;