declare type First_ = <T>(arr: T[]) => T;
/**
 * Retrieves the first element of the array.
 *
 * @param arr Initial array
 * @returns First element
 */
declare const first_: First_;
export { first_ };
export default first_;
