/** * @author WMXPY * @namespace Document * @description Put */ import { ImbricateAuthor } from "@imbricate/core"; import express from "express"; import { LoadedOrigin } from "../util/load"; export type ImbricateDocumentMergeResponse = { readonly documentUniqueIdentifier: string; readonly documentVersion: string; }; export declare const attachDocumentMergeRoute: (application: express.Express, originMap: Map, author: ImbricateAuthor) => Promise;