export interface BundleEntry { [key: string]: string; } /** * 将一个或多个 npm 包或本地文件的类型声明打包成单一的 .d.ts 字符串。 */ export declare function bundleDts(pkgOrPkgs: BundleEntry | string | (BundleEntry | string)[], scope?: string, minify?: boolean, progress?: (/** * 当前处理的进度 */ current: number, /** * 总处理的模块数(动态更新) */ total: number, /** * 当前处理的消息 */ msg: string) => void): Promise;