/**
 * Returns a copy of the array in reversed order.
 */
declare function reverse(array: any): any;
export default reverse;
