import type { ConfigObject } from '../../types';
import type { PluginsConfig } from './types';
declare const merge: (config: ConfigObject) => {
    plugin: import("./types").AnyPluginCtor;
    options?: Obj;
}[];
export default merge;
export type { PluginsConfig };
