/**
 * Deletes all files in the target directory and copies all files from source directory
 * @param sourcePath - Source directory path
 * @param targetPath - Target directory path
 */
export declare function deleteAndCopy(sourcePath: string, targetPath: string): Promise<void>;
