import type { ResolvedConfig } from "../types.js"; /** * Where the document for this URL actually is, or null when nothing answers. * * Separate from serving it because that is the half worth testing: which URLs * resolve to a file, which resolve to nothing, and that neither answer depends * on how the browser spelled the path. */ export declare function issueDocFile(resolved: ResolvedConfig, pathname: string): string | null; /** The document, streamed as it is on disk. */ export declare function serveIssueDoc(resolved: ResolvedConfig, pathname: string): Response;