/**
 * Returns the last item (tail) in an array
 */
declare const tail: (arr: any[]) => any[];
export default tail;
