import { z } from 'zod'; import type { ToolHandler } from '../tool.js'; import type { WebProvider } from './provider.js'; export declare const toolInfo: { readonly name: "fetchUrl"; readonly description: "Fetch one or more HTTP(S) URLs and return their content as Markdown. Use for webpages and raw hosted files such as README or source files."; readonly parameters: z.ZodObject<{ url: z.ZodPipe, z.ZodArray>; }, z.core.$strip>; }; export declare const handler: ToolHandler; declare const _default: { handler: ToolHandler<{ readonly name: "fetchUrl"; readonly description: "Fetch one or more HTTP(S) URLs and return their content as Markdown. Use for webpages and raw hosted files such as README or source files."; readonly parameters: z.ZodObject<{ url: z.ZodPipe, z.ZodArray>; }, z.core.$strip>; }, WebProvider>; name: "fetchUrl"; description: "Fetch one or more HTTP(S) URLs and return their content as Markdown. Use for webpages and raw hosted files such as README or source files."; parameters: z.ZodObject<{ url: z.ZodPipe, z.ZodArray>; }, z.core.$strip>; }; export default _default;