import RollupOption from './RollupOption'; /** * 配置生成器 * * @export * @param {RollupOption[]} options * @returns */ export declare function rollupGenerator(options: RollupOption[]): { input: string; output: { file: string; format: "umd" | "cjs" | "esm" | "amd" | "iife"; name?: string | undefined; }; plugins: any[]; }[];