import type { ResolvedConfig } from "../types.js"; export type ResolvedFetch = { url: string; title: string | null; text: string; contentType: string | null; status: number; extraction: "direct" | "readability" | "strip" | "jina" | "github"; truncated: boolean; }; export declare function resolveUrlContent(urlString: string, config: ResolvedConfig, options: { signal?: AbortSignal; maxOutputChars?: number; }): Promise; //# sourceMappingURL=resolve-content.d.ts.map