/**
 * Appends the elements of `values` to `array`.
 *
 * @private
 * @ignore
 * @param array The array to modify.
 * @param values The values to append.
 * @returns Returns `array`.
 */
declare function arrayPush(array: any, values: any): any;
export default arrayPush;
