import { Observable } from 'rxjs';
import { ActionsObservable, Epic } from 'redux-observable';
import { Store } from 'redux';
import { AppState } from '../../common/reducers';
/**
 * Post an allocation to the api
 *
 * @param jobRefId
 * @param courierRefId
 * @param user
 */
export declare const postAllocation: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>;
export declare const postDeallocationSuccess: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>;
export declare const postAllocationEpics: Epic<any, AppState, any>;
