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