import type { GetOrderDocument } from './types/index.js'; /** * Method responsible for fetching a specific document of a certain order. * * @param id - The identifier of the order. * @param documentId - The identifier of the document. * @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 getOrderDocument: GetOrderDocument; export default getOrderDocument;