import * as C from "../core.js"; /** * Drops the last specified number of elements from this stream. * * @note This combinator keeps `n` elements in memory. Be careful with big numbers. */ export declare function dropRight_(self: C.Stream, n: number): C.Stream; /** * Drops the last specified number of elements from this stream. * * @note This combinator keeps `n` elements in memory. Be careful with big numbers. * * @ets_data_first dropRight_ */ export declare function dropRight(n: number): (self: C.Stream) => C.Stream; //# sourceMappingURL=dropRight.d.ts.map