import { type Plugin } from 'rollup'; import { type FlatForgeOptions, type ForgePluginOption } from '../types/index.js'; /** * Create available plugins for flatjs compiler. * @param projectCwd the root dir of real project. * @param options all available customized plugin configuration. * @param extraPlugins The plugins we specificed from our comtomized. */ export declare const createPlugins: (plugin: ForgePluginOption, options: FlatForgeOptions) => Plugin[];