declare type Size_ = <T>(arr: T[]) => number;
/**
 * Retrieves the size (length) of the array.
 *
 * @param arr Initial array
 * @returns Array size (length)
 */
declare const size_: Size_;
export { size_ };
export default size_;
