/** * 取出数组中最后一个元素,若不是数组或数组为空数组,则返回undefined * @param array : 取数的数组 * */ export declare const arrayLast: (array: Array) => any;