import type { IStream, ITime } from '../types.js'; /** * Emit a single value computed from time, then end * * nowWith(t => t + 100): (currentTime+100)| */ export declare const nowWith: (fn: (time: ITime) => T) => IStream;