/**
* Returns the first element of the array.
*
* @param array - The array to return the first element from
* @returns The first element of the array
*
* @category Array
* @public
*/
export defaultfunctionfirst<ElementType>(arr: ElementType[]): ElementType | undefined;