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