export declare function getOutDir(): string; export declare function getHtmlPath(): string; export declare function getSpecJsonPath(): string; export declare function getHitsJsonPath(): string; /** Marker written by the Jest global setup; scopes hit files to the current run. */ export declare function getRunMarkerPath(): string; /** Try-it env/headers — outside outDir so rebuild does not wipe it. */ export declare function getViewerStorePath(): string; export declare function getViewerAssetPath(): string; export declare function getEmptyViewerAssetPath(): string; export declare function readEmptyDocsHtml(): Buffer; export declare function getFaviconAssetPath(): string; export declare function getFaviconLightAssetPath(): string; export declare function getDocsBasePath(): string; /** App-origin URL where generated API docs are served (e.g. `http://localhost:3000/docs`). */ export declare function getApiDocUrl(): string; /** Paths and URL for the generated API docs artifact. */ export declare function getApiDocs(): { url: string; specPath: string; htmlPath: string; };