import { Stream } from "effect"; /** * Apply pagination as a Stream combinator using Stream.drop for offset and Stream.take for limit. * Returns a function that transforms Stream → Stream, skipping `offset` items * and emitting at most `limit` items. * * Normalizes inputs: negative values are clamped to 0, fractional values are floored. * A limit of 0 returns an empty stream. Undefined limit means no limit (all remaining items). */ export declare const applyPagination: (offset: number | undefined, limit: number | undefined) => (stream: Stream.Stream) => Stream.Stream; //# sourceMappingURL=paginate-stream.d.ts.map