import type { GetOrderShippingAddressChangeRequests } from './types/index.js'; /** * Method responsible for fetching the requests to change the shipping address of the order. * * @param orderId - The orderID to get the requests. * @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 getOrderShippingAddressChangeRequests: GetOrderShippingAddressChangeRequests; export default getOrderShippingAddressChangeRequests;