import type { PluginManager } from '../types/plugin'; import type { ServerPluginAPI } from '../types/server/api'; import type { InternalServerContext } from '../types/server/context'; import type { ServerPluginExtends } from '../types/server/plugin'; export declare const debug: import("@modern-js/utils/compiled/debug").Debugger; export declare function initPluginAPI({ context, pluginManager, }: { context: InternalServerContext; pluginManager: PluginManager; }): ServerPluginAPI;