import type * as C from "../core.js"; /** * Returns this stream if the specified condition is satisfied, otherwise returns an empty stream. */ export declare function when_(stream: C.Stream, b: () => boolean): C.Stream; /** * Returns this stream if the specified condition is satisfied, otherwise returns an empty stream. * * @ets_data_first when_ */ export declare function when(b: () => boolean): (stream: C.Stream) => C.Stream; //# sourceMappingURL=when.d.ts.map