/** * Return the first element in the given array. */ export declare function first(arr: ArrayType): ArrayType extends Array ? ValueType | null : never;