import type { PluginAPI } from '@modern-js/core'; import type { UserConfig } from '../base/config'; import type { Hooks } from '../base/hook'; declare const test: (api: PluginAPI<{ hooks: Hooks; userConfig: UserConfig; normalizedConfig: Required; }>) => Promise; export default test;