export type RepoInfo = { username: string; name: string; branch: string; filePath: string; }; export declare function downloadAndExtractRepo(root: string, { username, name, branch, filePath }: RepoInfo): Promise; export declare function downloadAndExtractExample(root: string, name: string): Promise;