import * as React from 'react';
export interface CouriersProps {
    className: string;
    onClick: () => any;
}
export interface CouriersComponentProps extends CouriersProps {
    reloadCouriers: () => any;
}
export declare const Couriers: React.ComponentClass<CouriersProps>;
