import { type GitHubMeta } from '../utils/github-api.js'; export interface FileEntry { path: string; absolutePath: string; language: string; size: number; isEntryPoint: boolean; isConfig: boolean; isTest: boolean; } export interface RepoContent { path: string; isRemote: boolean; files: FileEntry[]; packageJson?: Record; pythonRequirements?: string; cargoToml?: string; goMod?: string; githubMeta?: GitHubMeta; } export declare function fetchRepo(input: string): Promise; //# sourceMappingURL=repo-fetcher.d.ts.map