import type { JestConfig } from '@modern-js/types'; import type { AliasOption } from '@modern-js/utils'; import type { TestConfig } from '../types'; import { TestConfigOperator } from './testConfigOperator'; /** * Parse jest config */ declare const getJestUtils: (testConfig: TestConfig) => TestConfigOperator; declare const patchConfig: (testOperator: TestConfigOperator) => Promise; export declare const DEFAULT_RESOLVER_PATH: string; export type UserConfig = { source?: { alias?: AliasOption; }; resolve?: { alias?: AliasOption; }; testing?: TestConfig; tools?: { jest: JestConfig | ((config: JestConfig) => JestConfig); }; }; export { getJestUtils, patchConfig };