import { RxHttpRequestAction, RxHttpActionTypes } from 'redux-rx-http';
export declare const POST_AUTO_ALLOCATION_GLOBAL: RxHttpActionTypes;
export declare const SET_AUTO_ALLOCATION_GLOBAL = "SET_AUTO_ALLOCATION_GLOBAL";
export interface SetAutoAllocationGlobalAction {
    type: 'SET_AUTO_ALLOCATION_GLOBAL';
    autoAllocationGlobal: boolean;
}
export declare type AutoAllocationAction = SetAutoAllocationGlobalAction;
export declare const postAutoAllocationGlobal: (autoAllocationGlobal: boolean, args?: any) => RxHttpRequestAction;
export declare const setAutoAllocationGlobal: (autoAllocationGlobal: boolean) => SetAutoAllocationGlobalAction;
