import { IFunctionObserver } from './i-observer'; export interface IUnsubscribable { unsubscribe(): void; } export declare type ISubscribable = (observer: IFunctionObserver, options?: { prepend: boolean; }) => IUnsubscribable;