/** * @author WMXPY * @namespace Text * @description Create */ import { IMBRICATE_TEXT_FEATURE, ImbricateAuthor } from "@imbricate/core"; import express from "express"; import { LoadedOrigin } from "../util/load"; export type ImbricateTextCreateResponse = { readonly textUniqueIdentifier: string; readonly supportedFeatures: IMBRICATE_TEXT_FEATURE[]; author?: ImbricateAuthor; }; export declare const attachTextCreateRoute: (application: express.Express, originMap: Map, author: ImbricateAuthor) => Promise;