interface GitHubProject { orgName: string; repoName: string; defaultBranch: string; } export declare const initialiseRepo: (dir: string, { orgName, repoName, defaultBranch }: GitHubProject) => Promise; export declare const downloadGitHubTemplate: (gitHubPath: string, destinationDir: string) => Promise; export declare const downloadPrivateTemplate: (templateName: string, destinationDir: string) => Promise; export {};