import { NpmRegistry } from "./types/npmRegistryType.js"; import { FallbackStrategy } from "./types/types.js"; export interface FetchResult { location: string; content: string; isFallback?: boolean; fallbackType?: "readme" | "empty"; } export declare const checkPackage: (s: NpmRegistry) => Promise; export declare const checkStandardUrls: (baseUrl: string) => Promise; export declare const fetchReadmeFromGithub: (homepage: string) => Promise; export declare const handleGithub: (homepage: string) => Promise; export declare const checkHomepage: (homepage: string) => Promise; export interface FindLLMsOptions { fallback?: FallbackStrategy; } export declare const findLLMsTxt: (packageName: string, options?: FindLLMsOptions) => Promise; //# sourceMappingURL=llmsFetcher.d.ts.map