/** * Doc Fetcher * Downloads version-matched documentation for frameworks */ import type { DetectedSkill } from '../scanner/index.js'; interface FetchOptions { refresh?: boolean; } /** * Fetch documentation for a detected skill */ export declare function fetchDocs(skill: DetectedSkill, options?: FetchOptions): Promise; /** * Check if cache is valid for a skill */ export declare function isCacheValid(skill: DetectedSkill): Promise; export {}; //# sourceMappingURL=index.d.ts.map