import { Stream } from 'xstream'
import { Selector } from './baseTypes'
export interface StoreObserveFunction {
    <Type>(actionTypeOrListener: string | Selector<Type>): Stream<Type>
}
export declare const observeFactory: (store: any) => StoreObserveFunction
