import type { GetShipmentTrackings } from './types/index.js'; /** * Gets all tracking events based on the tracking numbers. * * @param trackingCodes - Tracking numbers to check the status on. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getShipmentTrackings: GetShipmentTrackings; export default getShipmentTrackings;