interface IImportGitRepositoryParams { repository: string; targetDir: string; force?: boolean; keepGit?: boolean; } /** * Clones a git repository and extracts the content to the target dir * @param params */ export declare function importGitRepository(params: IImportGitRepositoryParams): Promise; export {};