export interface GetOutputOpts { /** 当前的工作目录 */ cwd: string; /** 用户配置的目录 */ output?: string; /** package.json main */ pkgMain?: string; } /** * 获取输出目录 * 1. 优先使用用户配置的目录 * 2. 使用 package.json main 字段配置的目录 * 3. 使用默认目录 'dist' */ export declare function getOutput(opts: GetOutputOpts): Promise;