/** * Removes the given number of elements from the beginning. * * @param array - The array to remove elements from * @param howMany - The number of elements to remove * @returns A clone of the array with the given number of elements removed from the beginning * * @category Array * @public */ export default function drop(array: Array, howMany?: number): Array;