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