import { RxHttpRequestAction, RxHttpActionTypes } from 'redux-rx-http';
import { JobStatusModel } from '@lml/cosmo-ts-data';
export declare const FETCH_COURIER_JOBS: RxHttpActionTypes;
export declare const SET_COURIER_JOBS = "SET_COURIER_JOBS";
export interface SetCourierJobsAction {
    type: 'SET_COURIER_JOBS';
    refId: string;
    jobs: JobStatusModel[];
}
export declare const fetchCourierJobs: (refId: string, showData?: string, args?: any) => RxHttpRequestAction;
export declare const setCourierJobs: (refId: string, jobs: JobStatusModel[]) => SetCourierJobsAction;
