/** * Extract `dependencies` to `miniprogram_npm` folder from specificed `dependencies` list. * @param projectCwd The project cwd * @param dependencies The dependencies that will be extracted. * @param mpFilesPattern The default is for `wechat` miniprogram. * @return Extracted all the depends npm module files with absolute file path. */ export declare const extractDependencyGraphOfDependencies: (projectCwd: string, dependencies: Record, mpFilesPattern?: string[]) => Promise>>;