export declare const RELOAD_COURIERS = "RELOAD_COURIERS";
export declare const FETCH_COURIERS_BY_STATUS_NOOP = "FETCH_COURIERS_BY_STATUS_NOOP";
export interface ReloadCouriersAction {
    type: 'RELOAD_COURIERS';
}
export interface FetchCouriersBystatusNoop {
    type: 'FETCH_COURIERS_BY_STATUS_NOOP';
    msg?: string;
}
export declare const reloadCouriers: () => ReloadCouriersAction;
export declare const fetchCouriersByStatusNoop: (msg?: string) => {
    type: string;
    msg: string;
};
