import { IAction } from './action'; import { Observable } from 'rxjs'; export declare function isOfType(type: T['type'], action: T | IAction): action is T; export declare function ofType(type: T['type']): (stream: Observable) => Observable;