/** * Produces an iterator that yields a tuple of key/value pairs from the given collection. * * @param {Collection} collection * * @returns {Iterator} * @category Iterables */ export default function entries(collection: Collection): Iterator;