export declare function cloneRepo({ sourcePath, targetPath }: {
    sourcePath: string;
    targetPath: string;
}, onProgress: (progress: number) => void): Promise<void>;
