import type { IStream, ITime } from '../types.js'; /** * Emits the current time after a delay, then ends * * wait(3): ---3| * wait(0): 0| * wait(5): -----5| */ export declare const wait: (delay: ITime) => IStream;