/** * Gently copies files to destination * Only overwrites if specified. */ export function gentlyCopy( filesList: string | Array, dest: string, opt?: { overwrite?: boolean } ): void; export type gentlyCopy = typeof gentlyCopy; declare const _default: Readonly<{ gentlyCopy: gentlyCopy; }>; export default _default