/**
 * Returns the initial (first) item in the input array
 */
declare const initial: (arr: any[]) => any;
export default initial;
