import * as React from 'react';
import { CourierStopModel } from '@lml/cosmo-ts-data';
export interface CourierStopProps {
    label: string;
    stop: CourierStopModel;
    last: boolean;
}
export interface CourierStopComponentProps extends CourierStopProps {
    showJobDetails: (refId: string) => any;
}
export declare const CourierStop: React.ComponentClass<CourierStopProps>;
