import * as React from 'react';
import { CourierModel } from '@lml/cosmo-ts-data';
export interface CourierTableRowProps {
    refId: string;
}
export interface CourierTableRowComponentProps extends CourierTableRowProps {
    courier: CourierModel;
    showCourierDetails: (refId: string) => any;
}
export declare const CourierTableRow: React.ComponentClass<CourierTableRowProps>;
