import type { PostOrderDocument } from './types/index.js'; /** * Method responsible for requesting a document to be sent to one of the user * contacts. * * @param id - The identifier of the order. * @param documentId - TThe identifier of the document. * @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 postOrderDocument: PostOrderDocument; export default postOrderDocument;