import type { IStream, ITime } from '../types.js'; /** * Creates a stream that emits the current time at regular intervals * * periodic(3): ---3--6--9--> */ export declare const periodic: (interval: ITime) => IStream;