import { PluginAPI, WebpackConfig } from '@kokojs/shared'; export declare type BuildDllOptions = { api: PluginAPI; config?: WebpackConfig; dllName: string; include: string[]; cacheKey?: string; prodCache?: boolean; }; export declare function buildDll({ api, config, dllName, include, cacheKey, prodCache, }: BuildDllOptions): Promise;