import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
export interface CourierActionBoxProps {
    courier: CourierModel;
}
export interface CourierActionBoxComponentProps extends CourierActionBoxProps {
    active: boolean;
    expanded: boolean;
    setExpandedCourier: (refId: string) => any;
    unsetExpandedCourier: (refId: string) => any;
    showCourierDetails: (refId: string) => any;
    showCourierChangeFrequencyModal: (courier: CourierModel) => any;
}
export declare const CourierActionBox: React.ComponentClass<CourierActionBoxProps>;
