import * as Actions from '../actions';
import { JobStatusModel } from '@lml/cosmo-ts-data';
/**
 * Map of refId to courier location
 */
export interface CourierJobsState {
    [coureirRefId: string]: JobStatusModel[];
}
export declare const initialCourierJobsState: CourierJobsState;
export declare const courierJobsReducer: (state: CourierJobsState, action: Actions.CourierApiAction) => CourierJobsState;
