import type { Tool } from '@wrongstack/core/types'; export type FetchFormat = 'markdown' | 'text' | 'raw'; export interface FetchInput { url: string; format?: FetchFormat | undefined; } export interface FetchOutput { content: string; status: number; content_type: string; url: string; } export { guardedFetch, guardedLookup } from './_fetch-guard.js'; export declare const fetchTool: Tool; //# sourceMappingURL=fetch.d.ts.map