export declare const RELOAD_COURIER_LOCATIONS = "RELOAD_COURIER_LOCATIONS";
export declare const COURIER_HAS_NO_LOCATION = "COURIER_HAS_NO_LOCATION";
export interface ReloadCourierLocationsAction {
    type: 'RELOAD_COURIER_LOCATIONS';
}
export interface CourierHasNoLocationAction {
    type: 'COURIER_HAS_NO_LOCATION';
    refId: string;
}
export declare const reloadCourierLocations: () => ReloadCourierLocationsAction;
export declare const courierHasNoLocation: (refId: string) => CourierHasNoLocationAction;
