/** * @author WMXPY * @namespace Database * @description Create */ import { IMBRICATE_DATABASE_FEATURE, ImbricateAuthor } from "@imbricate/core"; import express from "express"; import { LoadedOrigin } from "../util/load"; export type ImbricateDatabaseCreateResponse = { readonly supportedFeatures: IMBRICATE_DATABASE_FEATURE[]; readonly databaseUniqueIdentifier: string; readonly databaseVersion: string; }; export declare const attachDatabaseCreateRoute: (application: express.Express, originMap: Map, author: ImbricateAuthor) => Promise;