import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
export interface CourierJobCountsProps {
    refId: string;
}
export interface CourierJobCountsComponentProps extends CourierJobCountsProps {
    courier: CourierModel;
}
export declare const CourierJobCounts: React.ComponentClass<CourierJobCountsProps>;
