import * as React from 'react';
import { SelectedCourierAction } from '../../../couriers/data';
import { CourierActionModel } from '@lml/cosmo-ts-data';
import { StylableComponentProps } from 'cosmoui';
export interface CourierActionFormProps extends StylableComponentProps {
    jobRefId: string;
    onCancel: () => any;
}
export declare const getAvailableCourierActions: (currentCourierAction: CourierActionModel, currentType: string, stopType: string) => SelectedCourierAction[];
export declare const CourierActionForm: React.ComponentClass<CourierActionFormProps>;
