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