import { Signale } from 'signale'; import type { Options } from './types'; interface RunOptions { /** 是否开启监听 */ watch?: boolean; /** 是否是lerna的子项目 */ isLerna?: boolean; } export declare function build(options: Options, runOpts: RunOptions | undefined, signale: Signale): Promise; export {};