import * as React from 'react';
import { CourierModel, AllocationType } from '@lml/cosmo-ts-data';
import { StylableComponentProps } from 'cosmoui';
export interface CourierAllocationProps extends StylableComponentProps {
    canAllocate: boolean;
    courier: CourierModel;
}
export interface CourierAllocationComponentProps extends CourierAllocationProps {
    allocate: (allocationType: AllocationType, jobRefId?: string, courierRefId?: string) => any;
}
export declare const CourierAllocationIcon: React.ComponentClass<CourierAllocationProps>;
