/** * Produces an array of all values in a given collection, delimited with the provided value. * * @param {Collection} collection * @param {any} delimiter * * @returns {Array} */ export default function delimit(collection: Collection, delimiter: any): Array;