declare type stringy = string | string[] | IterableIterator<string>;
/**
 * Concatenates strings and/or arrays of strings
 *
 * @param args Concatenates a list of strings, string arrays, or functions that return a string or string array.
 * @returns The concatenation of *args*.
 */
export declare function build(...args: (stringy | Generator<stringy> | (() => stringy))[]): string;
export default build;
