/**
 * Appends an array to the end of another.
 * The first array will be modified.
 */
declare function append(arr1: any, arr2: any): any;
export default append;
