/** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */importtype{Config}from'@jest/types';export{getTestEnvironment,isJSONString}from'./utils';export{defaultasnormalize}from'./normalize';export{defaultasdeprecationEntries}from'./Deprecated';export{replaceRootDirInPath}from'./utils';export{defaultasdefaults}from'./Defaults';export{defaultasdescriptions}from'./Descriptions';import*asconstantsfrom'./constants';export{constants};declaretypeReadConfig={configPath:Config.Path|null|undefined;globalConfig:Config.GlobalConfig;hasDeprecationWarnings:boolean;projectConfig:Config.ProjectConfig;};exportdeclarefunctionreadConfig(argv:Config.Argv,packageRootOrConfig:Config.Path|Config.InitialOptions,skipArgvConfigOption?:boolean,parentConfigPath?:Config.Path|null,projectIndex?:number):Promise<ReadConfig>;exportdeclarefunctionreadConfigs(argv:Config.Argv,projectPaths:Array<Config.Path>):Promise<{globalConfig:Config.GlobalConfig;configs:Array<Config.ProjectConfig>;hasDeprecationWarnings:boolean;}>;