/** * @author WMXPY * @namespace Static * @description Create Base64 */ import { IMBRICATE_STATIC_FEATURE, ImbricateAuthor } from "@imbricate/core"; import express from "express"; import { LoadedOrigin } from "../util/load"; export type ImbricateStaticCreateBase64Response = { readonly staticUniqueIdentifier: string; readonly supportedFeatures: IMBRICATE_STATIC_FEATURE[]; author?: ImbricateAuthor; }; export declare const attachStaticCreateBase64Route: (application: express.Express, originMap: Map, author: ImbricateAuthor) => Promise;