/** * @author WMXPY * @namespace Document * @description Query */ import express from "express"; import { LoadedOrigin } from "../util/load"; import { ImbricateDocumentGetResponse } from "./get"; export type ImbricateDocumentQueryResponse = { readonly documents: ImbricateDocumentGetResponse[]; }; export declare const attachDocumentQueryRoute: (application: express.Express, originMap: Map) => Promise;