import { ParquetValueArray } from './declare';
/**
 * Merge the given arrays into one.  The resulting array will have the
 * same type as the first one.
 *
 * If only the first array is non-empty (or there is just one array)
 * it will be returned unmodified.
 *
 * @param arrays Arrays to merge
 */
export default function concatValueArrays<T extends ParquetValueArray>(arrays: T[]): T;
