export declare function _clearBodyCacheForTests(): void; export declare function isLlmsTxtDomain(url: string, allowlist?: string[]): boolean; interface LlmsTxtMatch { title?: string; text: string; } export declare function extractSection(content: string, requestedUrl: string): LlmsTxtMatch | null; export interface LlmsTxtResult { title: string; url: string; text: string; source: "llms_full_txt"; } export declare function tryLlmsTxtFetch(url: string, maxChars: number, allowlist?: string[]): Promise; export {};