import type { GetGuestOrderLegacy } from './types/index.js'; /** * Method responsible for fetching the details of a guest user order. * Uses the legacy method which requires cookies. * * @param orderId - The orderID to get the details. * @param data - Request data. * @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 getGuestOrderLegacy: GetGuestOrderLegacy; export default getGuestOrderLegacy;