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