/**
 * Copies files from template to destination path
 * @param project Project type (next, expo, service)
 * @param destPath Destination path
 */
declare const copyFilesFromTemplate: (project: string, destPath: string) => Promise<void>;
export default copyFilesFromTemplate;
