import { Observable } from 'rxjs';
import { ActionLike } from './ActionLike.js';
export declare interface Epic<Input extends ActionLike = any, Output extends Input = Input, Dependencies = any> {
(action$: Observable<Input>, dependencies: Dependencies): Observable<Output>;
}