import { Dispatch } from 'redux';
import { JobModel } from '@lml/cosmo-ts-data';
export declare const showAllocationModal: (jobRefId?: string) => (dispatch: Dispatch<any>, getState: () => any) => void;
/**
 * NOTE:  the deallocation modal is also the reallocation modal
 * You can choose between one or the other
 * @param job
 */
export declare const showDeallocationModal: (job: JobModel) => {
    type: string;
    modalType: string;
    modalProps: any;
};
