import { CourierActionType, StopType } from '@lml/cosmo-ts-data';
export interface SelectedCourierAction {
    label: string;
    actionType: CourierActionType;
    image: string;
    stopType?: StopType;
}
