import { CopyOptions } from './utils/fs'; export interface CopySourceFilesInterface extends CopyOptions { basePath?: string; } export declare function copySourceFiles(src: string | string[], dest: string, options?: CopySourceFilesInterface): Promise;