import { StrictStream } from './index'; export type IInterval = StrictStream & { stop: () => void; }; export declare function interval(ms: number, startImmediate?: boolean): IInterval;