import { BehaviorSubject, Observable, SchedulerLike } from 'rxjs'; export interface TimerOptions { timeout: number; refreshInterval: number; paused$: BehaviorSubject; scheduler?: SchedulerLike; } export interface Timer { complete$: Observable; percentProgress$: Observable; } export declare function createTimer(options: TimerOptions): Timer;