/**
 * A 200% faster join than the native `Array.prototype.join` for string arrays and string separator.
 */
declare function fastStringArrayJoin(arr: string[] | readonly string[], sep: string): string;

export { fastStringArrayJoin };
