import type { Awaitable } from "./Awaitable";
/** chunk items if condition is true */
export declare function chunkIfs<T>(predicate: (x: T, i: number, chunks: T[]) => Awaitable<boolean>, { inclusive }?: {
    inclusive?: boolean | undefined;
}): TransformStream<T, T[]>;
