import { IEmitOptions, SubEventCount } from '../dist/src';
/**
 * Creates a time-interval event:
 *
 * - The interval re-starts when the first subscriber registers;
 * - The interval stops when the last subscription is cancelled.
 */
export declare function fromInterval(timeout: number, options?: IEmitOptions): SubEventCount<void>;
