/**
 * Functional wrapper for Array.prototype.join
 *
 * Adds all the elements of an array separated by the specified separator string.
 *
 * @param separator Separator
 * @param arr Initial array
 * @returns String of joined array elements.
 */
declare const join: (...x: any[]) => any;
export { join };
export default join;
