import type { VextApp } from "../../types/app.js"; import type { DocEndpointsConfig } from "../openapi/types.js"; export type OpenAPISpecProvider = object | (() => object | Promise); export declare function registerDocsEndpoints(app: VextApp, spec: OpenAPISpecProvider, config: DocEndpointsConfig): void;