import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js'; import type { ToolProps } from './types.ts'; /** * Fetch a documentation page from remote or local cache. * * @see - {@link fetchWithCache | `fetchWithCache`} for the implementation details on caching and fetching. * * @param props - options for fetching a documentation page * @param props.url - the URL of the documentation page to fetch */ declare const tool: (props: ToolProps) => Promise; export { tool }; //# sourceMappingURL=tool.d.ts.map