/*! * Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. */ import { CopyDescriptor } from './copy-list'; export declare function getTemplatePaths(inputDirs: string[], excludes?: string[]): { [inputDir: string]: string[]; }; export declare function getCopyDescriptors(targetDir: string, templatePaths: { [templateSubDir: string]: string[]; }): CopyDescriptor[]; export declare function findConflicts(copyDescriptors: CopyDescriptor[], force?: boolean): Promise; export declare function copyFiles(copyDescriptors: CopyDescriptor[], options: { [key: string]: any; }): Promise;