import type { CliPlugin } from '@modern-js/core'; import { type TestConfigOperator } from '../base'; import type { UserConfig } from '../base/config'; import type { Hooks } from '../base/hook'; export declare const mergeUserJestConfig: (testUtils: TestConfigOperator) => void; export declare const getJestTransformEsModulesRegStr: () => string; export declare const testingPlugin: () => CliPlugin<{ hooks: Hooks; userConfig: UserConfig; normalizedConfig: Required; }>; export default testingPlugin;