import type { IStream, ITime } from '../types.js'; /** * When stream ends, continue with values from another stream * * streamA: -a-b-c| * streamB: -x-y-z-> * continueWith(f): -a-b-c-x-y-z-> */ export declare const continueWith: IContinueWithCurry; export interface IContinueWithCurry { (f: (time: ITime) => IStream, s: IStream): IStream; (f: (time: ITime) => IStream): (s: IStream) => IStream; }