import { ISafeObserver } from './SafeObserver'; import { ISubscription } from './Subscription'; export declare class Periodic implements ISubscription { protected sub: ISubscription; protected sink: ISafeObserver; onEvent(): void; unsubscribe(): void; readonly closed: boolean; }