/** * @author WMXPY * @namespace Database * @description Put Schema */ import { ImbricateAuthor } from "@imbricate/core"; import express from "express"; import { LoadedOrigin } from "../util/load"; export type ImbricateDatabasePutSchemaResponse = { readonly databaseUniqueIdentifier: string; readonly databaseVersion: string; }; export declare const attachDatabasePutSchemaRoute: (application: express.Express, originMap: Map, author: ImbricateAuthor) => Promise;