import type { VextHandler } from "../../types/middleware.js"; import type { VextOpenAPIDocsKind } from "./types.js"; export declare function detectRouteDocsKind(handler?: VextHandler): VextOpenAPIDocsKind; export declare function detectRenderCall(handler: VextHandler): boolean; /** * Static build tooling receives handler source text instead of a loaded * function. Keep its page/API classification identical to the runtime * collector without evaluating application modules. */ export declare function detectRouteSourceDocsKind(handlerSource?: string): VextOpenAPIDocsKind; export declare function detectRenderCallSource(source: string): boolean;