import { Transducer } from "./transducer"; export declare class DropTransducer implements Transducer { count: number; constructor(count: number); async_(iterable: AsyncIterable): AsyncIterable; sync(iterable: Iterable): Iterable; } export declare function drop(count: number): DropTransducer;