/**
 * Returns last element of array.
 */
declare function last(arr: any): any;
export default last;
