import * as React from 'react';
import { JobStatusModel } from '@lml/cosmo-ts-data';
export interface CourierJobsProps {
    courierRefId: string;
}
export interface CourierJobsComponentProps extends CourierJobsProps {
    jobsByStatus: JobStatusModel[];
    fetchCourierJobs: (refId: string, showData?: string, args?: any) => any;
}
export declare const CourierJobs: React.ComponentClass<CourierJobsProps>;
