import * as React from 'react';
import { CourierModel, LocationModel } from '@lml/cosmo-ts-data';
export interface CourierMapProps {
    refId: string;
}
export interface CourierMapComponentProps extends CourierMapProps {
    courier: CourierModel;
    location: LocationModel;
}
export declare const CourierMap: React.ComponentClass<CourierMapProps>;
