/** * Produces an iterator that yields the keys from the given collection * * @param {Collection} collection * * @returns {Iterator} * @category Iterables */ export default function keys(collection: Collection): Iterator;