import { Dispatch } from 'redux';
import { AppState } from '../../common/reducers';
import { CourierModel } from '@lml/cosmo-ts-data';
export declare const showCourierDetailsModal: (refId?: string) => (dispatch: Dispatch<any>, getState: () => AppState) => void;
export declare const showCourierChangeFrequencyModal: (courier: CourierModel) => {
    type: string;
    modalType: string;
    modalProps: any;
};
export declare const showCourierActionModal: (jobRefId: string) => {
    type: string;
    modalType: string;
    modalProps: any;
};
