import { Skill } from './skillParser'; export interface GitHubLoaderConfig { owner: string; repo: string; branch: string; path: string; token: string; cacheTtlSeconds: number; } export declare class GitHubLoader { private config; private cache; private readonly headers; constructor(config: GitHubLoaderConfig); private fetchJson; private fetchSkillFromDir; loadAll(): Promise; loadSelected(names: string[]): Promise; } //# sourceMappingURL=githubLoader.d.ts.map