/** @module array/drop.ts */
interface Drop {
(count: number, arr: A[]): A[];
(count: number): (arr: A[]) => A[];
}
/**
* Drops the given count of items from the beginning of the array
* @param count number of items to remove
* @param arr items to remove from array copy
* @sig n -> a[] -> a[]
*/
export declare const drop: Drop;
export default drop;