import type { GetReturnPickupCapability } from './types/index.js'; /** * Obtains the pickup capability for a specific return and pickup day. * * @param id - Return identifier. * @param pickupDay - Day of the pickup. Format YYYY-MM-DD. * @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 getReturnPickupCapability: GetReturnPickupCapability; export default getReturnPickupCapability;