import { OdpClient } from "../clients/odp.client.js"; import { FileStore } from "../resources/store.js"; import { FastMCP } from "fastmcp"; //#region src/tools/odp.tools.d.ts /** * Fetches a file-wrapper PDF from USPTO, stashes it in the transient store, and returns the * JSON payload the tool surfaces: a fetchable URL on the server's own host (never the bytes, * never the USPTO key). Exported for testing. */ declare const buildDownloadResult: (client: Pick, applicationNumberText: string, documentIdentifier: string, store?: FileStore, baseUrl?: string) => Promise; declare const registerOdpTools: (server: FastMCP) => void; //#endregion export { buildDownloadResult, registerOdpTools }; //# sourceMappingURL=odp.tools.d.ts.map