/**
 * Joins strings with the specified separator inserted between each value.
 * Null values and empty strings will be excluded.
 */
declare function join(items: any, separator?: string): string;
export default join;
