import type { Ary, IfpList, List, Num, Yield1$, } from '../internal/types/tools/index.js'; /** * Drops the first `count` elements from the array. * @param array - The array to drop from. * @param count - The number of elements to drop. * * @example * ```typescript * drop([1, 2, 3, 4, 5], 3); // => [4, 5] * drop([1, 2, 3, 4, 5], 0); // => [1, 2, 3, 4, 5] * drop([1, 2, 3, 4, 5], 10); // => [] * ``` */ declare const drop: ( array: AS, count: N, ) => IfpList< AS, import('../internal/types/tools/index.js').If< Num.IsNat, List.Drop$, Ary.Mutate$ >, Yield1$ >; export default drop; //# sourceMappingURL=drop.d.ts.map