/**
 * Combine multiple arrays into a single one
 * @param arrays The arrays to be combined
 * @returns Combined array
 */
export declare function combine<T>(...arrays: Array<Array<T> | T>): Array<T>;
