/**
 * Returns the head (everything but the list item) items in the array.
 */
declare const head: (arr: any[]) => any[];
export default head;
