import type { IsomorphicIterable } from "@vangware/types"; import type { GeneratorOutput } from "./types/GeneratorOutput.js"; /** * Drop the specified amount of items from the given iterable or asynchronous * iterable. * * @category Generators * @example * ```typescript * const drop2 = drop(2); * drop2([1, 2, 3, 4, 5]); // [3, 4, 5] * ``` * @param amount Amount of items to drop. * @returns Curried function with `amount` in context. */ export declare const drop: ( amount: bigint | number, ) => ( iterable: Iterable_1, ) => GeneratorOutput;