import type { GetOrderDocuments } from './types/index.js'; /** * Method responsible for fetching the documents of the respective order. * * @param id - The identifier of the order. * @param types - A list of document types to filter (Ex: ['ComercialInvoice']).+. * @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 getOrderDocuments: GetOrderDocuments; export default getOrderDocuments;