import { RxHttpRequestAction, RxHttpActionTypes } from 'redux-rx-http';
import { CourierModel } from '@lml/cosmo-ts-data';
export declare const PATCH_COURIER_LABEL: RxHttpActionTypes;
export declare const SET_COURIER_LABEL = "SET_COURIER_LABEL";
export interface SetCourierLabelAction {
    type: 'SET_COURIER_LABEL';
    refId: string;
    label: string;
}
export declare const patchCourierLabel: (courier: CourierModel, label: string, args?: any) => RxHttpRequestAction;
export declare const setCourierLabel: (refId: string, label: string) => SetCourierLabelAction;
